mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
11 lines
99 B
D
11 lines
99 B
D
module enum2;
|
|
|
|
void main()
|
|
{
|
|
enum E {
|
|
A,B
|
|
}
|
|
E e = E.B;
|
|
assert(e == E.B);
|
|
}
|