diff options
| author | Peter Collingbourne <peter@pcc.me.uk> | 2011-09-29 18:04:05 +0000 |
|---|---|---|
| committer | Peter Collingbourne <peter@pcc.me.uk> | 2011-09-29 18:04:05 +0000 |
| commit | 49eedecd702fd7d4f88a1276192f1a2d0d0f4c43 (patch) | |
| tree | bd959fab208060f4ad39829e7cadd4ab6808c7f0 /clang/test/Parser | |
| parent | 70188b3fc24df1cb7d5c4d1f886a8d50ede8731f (diff) | |
| download | bcm5719-llvm-49eedecd702fd7d4f88a1276192f1a2d0d0f4c43.tar.gz bcm5719-llvm-49eedecd702fd7d4f88a1276192f1a2d0d0f4c43.zip | |
Add support for parsing an attribute-specifier-seq containing multiple
attribute-specifiers
llvm-svn: 140794
Diffstat (limited to 'clang/test/Parser')
| -rw-r--r-- | clang/test/Parser/cxx0x-attributes.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/test/Parser/cxx0x-attributes.cpp b/clang/test/Parser/cxx0x-attributes.cpp index 75f23c657c6..0b6413cfb27 100644 --- a/clang/test/Parser/cxx0x-attributes.cpp +++ b/clang/test/Parser/cxx0x-attributes.cpp @@ -13,6 +13,7 @@ void fn_attr () [[]]; class [[]] class_attr {}; extern "C++" [[]] int extern_attr; template <typename T> [[]] void template_attr (); +[[]] [[]] int [[]] [[]] multi_attr [[]] [[]]; int comma_attr [[,]]; // expected-error {{expected identifier}} int scope_attr [[foo::]]; // expected-error {{expected identifier}} |

