diff options
Diffstat (limited to 'clang/test/SemaCXX/attr-cxx0x.cpp')
| -rw-r--r-- | clang/test/SemaCXX/attr-cxx0x.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/SemaCXX/attr-cxx0x.cpp b/clang/test/SemaCXX/attr-cxx0x.cpp index c697a7d1523..4281895f40e 100644 --- a/clang/test/SemaCXX/attr-cxx0x.cpp +++ b/clang/test/SemaCXX/attr-cxx0x.cpp @@ -9,7 +9,7 @@ struct align_member { int member alignas(8); }; -template <unsigned A> alignas(A) struct align_class_template {}; +template <unsigned A> struct alignas(A) align_class_template {}; // FIXME: these should not error template <typename... T> alignas(T...) struct align_class_temp_pack_type {}; // expected-error{{pack expansions in alignment specifiers are not supported yet}} |

