mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
6 lines
230 B
D
6 lines
230 B
D
// https://issues.dlang.org/show_bug.cgi?id=23105
|
|
|
|
module test23105;
|
|
|
|
static assert(is(mixin(`__traits(getMember, test23105, "object")`) == module));
|
|
static assert(is(__traits(getMember, test23105, "object") == module)); // Fixed
|