]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/compilable/test18694.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / test18694.d
CommitLineData
5fee5ec3
IB
1struct S { enum int x = 42; }
2static S dummy;
3pure int fun(int x)
4{
5 return dummy.x + x;
6}
7
8void main()
9{}