aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/compilable/ice15333.d
blob: 4923dfa5b9be7681977ac293904d2f64a41eafa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// EXTRA_SOURCES: imports/a15333.d

module ice15333;

void map(alias fun)() {}

struct IdentifierResolver(alias handler)
{
    void resolve()
    {
        map!((a) {});
        handler(true);
    }
}