mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
16 lines
341 B
D
16 lines
341 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/parse13361.d(11): Error: empty attribute list is not allowed
|
|
fail_compilation/parse13361.d(14): Error: empty attribute list is not allowed
|
|
fail_compilation/parse13361.d(14): Error: use `@(attributes)` instead of `[attributes]`
|
|
---
|
|
*/
|
|
struct A
|
|
{
|
|
@()
|
|
int b;
|
|
|
|
[] // deprecated style
|
|
int c;
|
|
}
|