]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.dg/gdc47.d
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gdc.dg / gdc47.d
1 // https://bugzilla.gdcproject.org/show_bug.cgi?id=47
2 // { dg-do compile }
3
4 template Foo47()
5 {
6 void test47()
7 {
8 asm { "nop"; }
9 }
10 }
11
12 mixin Foo47!();