commit | 9cfbe48a7a20a217fdb2920b29b67ae7941cb116 | [log] [tgz] |
---|---|---|
author | Douglas Gregor <dgregor@apple.com> | Sat Jun 20 00:51:54 2009 +0000 |
committer | Douglas Gregor <dgregor@apple.com> | Sat Jun 20 00:51:54 2009 +0000 |
tree | 43a0039929a24ceb9f232089e83fda23c07c7ff1 | |
parent | 6aed766538c9d996b709354386c861037b9eedba [diff] [blame] |
Parsing and AST support for using declarations, from John Thompson! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@73812 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Parser/cxx-using-directive.cpp b/test/Parser/cxx-using-directive.cpp index 676f4e6..504d026 100644 --- a/test/Parser/cxx-using-directive.cpp +++ b/test/Parser/cxx-using-directive.cpp
@@ -13,8 +13,7 @@ class C { - using namespace B ; // expected-error{{expected member name or ';' after declaration specifiers}} - //FIXME: this needs better error message + using namespace B ; // expected-error{{not allowed}} }; namespace B {}