mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
7 lines
153 B
D
7 lines
153 B
D
// https://issues.dlang.org/show_bug.cgi?id=3775
|
|
|
|
struct Bug3775 {
|
|
static int byLine()() { return 1; }
|
|
}
|
|
|
|
static assert(cast(int)Bug3775.byLine == 1);
|