mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
10 lines
152 B
D
10 lines
152 B
D
// https://issues.dlang.org/show_bug.cgi?id=23533
|
|
// REQUIRED_ARGS: -preview=nosharedaccess
|
|
|
|
enum E { a, b }
|
|
|
|
void main()
|
|
{
|
|
E x = E.b;
|
|
E y = E.max;
|
|
}
|