diff options
author | Anders Carlsson <andersca@mac.com> | 2011-01-23 21:07:30 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2011-01-23 21:07:30 +0000 |
commit | 19588aa40b8b1350c5df95ba4cb94b035a3c46ca (patch) | |
tree | d9a176171d55633e9aa8605cf8dfccb2b8e82e1a /clang/test/Parser/cxx0x-attributes.cpp | |
parent | 773bc67efffd2238eea85ffe2d2b192aed78fb79 (diff) | |
download | bcm5719-llvm-19588aa40b8b1350c5df95ba4cb94b035a3c46ca.tar.gz bcm5719-llvm-19588aa40b8b1350c5df95ba4cb94b035a3c46ca.zip |
Get rid of the [[final]] C++0x attribute.
llvm-svn: 124083
Diffstat (limited to 'clang/test/Parser/cxx0x-attributes.cpp')
-rw-r--r-- | clang/test/Parser/cxx0x-attributes.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/test/Parser/cxx0x-attributes.cpp b/clang/test/Parser/cxx0x-attributes.cpp index 67b2ea6f62e..9956427ebf1 100644 --- a/clang/test/Parser/cxx0x-attributes.cpp +++ b/clang/test/Parser/cxx0x-attributes.cpp @@ -29,7 +29,6 @@ extern "C++" [[]] { } // expected-error {{an attribute list cannot appear here}} [[]] using namespace ns; // Argument tests -[[final()]] int final_params; // expected-error {{C++0x attribute 'final' cannot have an argument list}} [[align]] int aligned_no_params; // expected-error {{C++0x attribute 'align' must have an argument list}} [[align(i)]] int aligned_nonconst; // expected-error {{'aligned' attribute requires integer constant}} |