mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
11 lines
180 B
D
11 lines
180 B
D
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");
|