dmd/compiler/test/fail_compilation/parse13361.d
2022-07-09 18:53:07 +02:00

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;
}