mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
6 lines
172 B
D
6 lines
172 B
D
// https://issues.dlang.org/show_bug.cgi?id=19409
|
|
|
|
module test.foo;
|
|
|
|
static if (__traits(compiles, __traits(identifier, test.foo))) {} // fails
|
|
else { static assert(0); }
|