]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/compilable/test15464.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / test15464.d
1 class C15464
2 {
3 static immutable field = 0;
4 }
5
6 struct S15464
7 {
8 this(int i)
9 {
10 }
11 }
12
13 void issue15464(T)() @S15464(T.field)
14 {
15 }
16
17 void main()
18 {
19 issue15464!C15464();
20 }
21
22