diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-06-29 19:17:14 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-06-29 19:17:14 +0000 |
commit | 6969fb73cab2ecec446b02ed6671de8a24b4fc75 (patch) | |
tree | 287f49a05f4c743549d729af84c34e2b3b0bbc6c /clang/test/FixIt/typo.cpp | |
parent | dadea5b1785678d06ce6d0acc4cd289670d4d87e (diff) | |
download | bcm5719-llvm-6969fb73cab2ecec446b02ed6671de8a24b4fc75.tar.gz bcm5719-llvm-6969fb73cab2ecec446b02ed6671de8a24b4fc75.zip |
Fix broken testcase
llvm-svn: 107194
Diffstat (limited to 'clang/test/FixIt/typo.cpp')
-rw-r--r-- | clang/test/FixIt/typo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/FixIt/typo.cpp b/clang/test/FixIt/typo.cpp index 9393ce13da0..077aa9c6f78 100644 --- a/clang/test/FixIt/typo.cpp +++ b/clang/test/FixIt/typo.cpp @@ -13,7 +13,7 @@ namespace std { } namespace otherstd { // expected-note 2{{'otherstd' declared here}} \ - // expected-note 2{{namespace 'otherstd' defined here}} + // expected-note{{namespace 'otherstd' defined here}} using namespace std; } @@ -31,7 +31,7 @@ float area(float radius, // expected-note{{'radius' declared here}} } using namespace othestd; // expected-error{{no namespace named 'othestd'; did you mean 'otherstd'?}} -namespace blargh = otherstd; // expected-note 2{{namespace 'blargh' defined here}} +namespace blargh = otherstd; // expected-note 3{{namespace 'blargh' defined here}} using namespace ::blarg; // expected-error{{no namespace named 'blarg' in the global namespace; did you mean 'blargh'?}} namespace wibble = blarg; // expected-error{{no namespace named 'blarg'; did you mean 'blargh'?}} |