d: Merge upstream dmd, druntime 26f049fb26, phobos 330d6a4fd.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / test20039.d
blobd912139d8036e2bd9329ab0d328a5f6fa75d7c3c
1 void foo()() { }
2 class bar { }
4 alias bug = foo;
5 alias bug = bar;
7 template Identity(T...) { }
9 void main()
11 alias member1 = Identity!(__traits(getMember, mixin(__MODULE__), "bug"));
12 alias member2 = Identity!(__traits(getMember, mixin(__MODULE__), "bug"));