blob: f05ee8e5138d39ce9fc125a43877e354afece11e [file] [log] [blame]
/*
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;
}