]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/compilable/test3775.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / test3775.d
1 // https://issues.dlang.org/show_bug.cgi?id=3775
2
3 struct Bug3775 {
4 static int byLine()() { return 1; }
5 }
6
7 static assert(cast(int)Bug3775.byLine == 1);
8
9