]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/compilable/test20326.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / test20326.d
CommitLineData
5fee5ec3
IB
1class C;
2static assert(C.stringof == "C");
3
4interface I;
5static assert(I.stringof == "I");
6
7union U;
8static assert(U.stringof == "U");
9
10struct S;
11static assert(S.stringof == "S");