mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
11 lines
239 B
D
11 lines
239 B
D
/* TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail22127.d(101): Error: user-defined attributes are not allowed on `alias` declarations
|
|
---
|
|
*/
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=22127
|
|
|
|
#line 100
|
|
|
|
alias getOne = @(0) function int () => 1;
|