]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/fail_compilation/fail316.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail316.d
1 template BadImpl(T, alias thename)
2 {
3 void a_bad_idea(T t)
4 {
5 thename.a_bad_idea(t);
6 }
7 }
8
9 class foo
10 {
11 mixin BadImpl!(uint,Mix1) Mix1;
12 }
13
14 int main()
15 {
16 return 0;
17 }