]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/compilable/testtempl2.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / testtempl2.d
1 class C
2 {
3 int m;
4 auto fun()
5 {
6 inc!m();
7 new N!m;
8 }
9 }
10
11 auto inc(alias m)()
12 {
13 ++m;
14 }
15
16 class N(alias m)
17 {
18 }
19
20 void main()
21 {
22 auto c = new C;
23 c.new N!(c.m);
24 }