mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00

This brings the compiler's behavior in line with the language spec. Fixes dlang/dlang.org#4137
3 lines
58 B
D
3 lines
58 B
D
enum UDA;
|
|
int fun() @UDA => 7;
|
|
static assert(fun() == 7);
|