2 // { dg-do compile { target c++11 } }
3 // { dg-options "-Wno-attributes" }
6 [[noreturn...]] // { dg-error "attribute with no arguments contains no parameter packs" }
7 [[deprecated...]] // { dg-error "attribute with no arguments contains no parameter packs" }
8 [[nodiscard...]] // { dg-error "attribute with no arguments contains no parameter packs" }
14 [[likely...]]; // { dg-error "attribute with no arguments contains no parameter packs" }
15 [[fallthrough...]]; // { dg-error "attribute with no arguments contains no parameter packs" }
17 [[unlikely...]]; // { dg-error "attribute with no arguments contains no parameter packs" }
24 struct S { [[no_unique_address...]] T t; }; // { dg-error "attribute with no arguments contains no parameter packs" }
29 int a = foo <1, 2, 3> (4);