mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
6 lines
135 B
D
6 lines
135 B
D
// https://issues.dlang.org/show_bug.cgi?id=23534
|
|
|
|
enum E { a = 1, b = 2 }
|
|
|
|
// `E.a` is not 0
|
|
static assert(!__traits(isZeroInit, E));
|