blob: 1da3eb6e6dc2b46babe4ecfb8dc74776dd502472 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class C;
static assert(C.stringof == "C");
interface I;
static assert(I.stringof == "I");
union U;
static assert(U.stringof == "U");
struct S;
static assert(S.stringof == "S");
|