d: Merge upstream dmd, druntime 26f049fb26, phobos 330d6a4fd.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / test19746.d
blob28677b09e734cd0699ca05913e1eab04387ca62d
1 // REQUIRED_ARGS: -Icompilable/imports
2 // EXTRA_FILES: imports/test19746a.d imports/test19746b.d imports/test19746c.d imports/test19746d.d
3 import test19746c;
4 import test19746b: Frop;
6 template Base(T)
8 static if (is(T == super)) alias Base = Object;
11 class Foo
13 class Nested: Base!Foo { }
14 void func(Frop) { }
15 void thunk() { }