aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Parser/cxx-using-declaration.cpp
diff options
context:
space:
mode:
authorIsmail Pazarbasi <ismail.pazarbasi@gmail.com>2014-03-07 22:36:23 +0000
committerIsmail Pazarbasi <ismail.pazarbasi@gmail.com>2014-03-07 22:36:23 +0000
commit025f428c7303c6b9e11d2a944fe68becd80b7449 (patch)
tree00b960efc4ec06d5205c711594d2ddc196dfd3ef /clang/test/Parser/cxx-using-declaration.cpp
parentab9da5129a0a670a863d58c94f67de0cf276273c (diff)
downloadllvm-025f428c7303c6b9e11d2a944fe68becd80b7449.zip
llvm-025f428c7303c6b9e11d2a944fe68becd80b7449.tar.gz
llvm-025f428c7303c6b9e11d2a944fe68becd80b7449.tar.bz2
Replace "can not" with "cannot" in diagnostics messages.
llvm-svn: 203302
Diffstat (limited to 'clang/test/Parser/cxx-using-declaration.cpp')
-rw-r--r--clang/test/Parser/cxx-using-declaration.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Parser/cxx-using-declaration.cpp b/clang/test/Parser/cxx-using-declaration.cpp
index 320fd09..17237a3 100644
--- a/clang/test/Parser/cxx-using-declaration.cpp
+++ b/clang/test/Parser/cxx-using-declaration.cpp
@@ -33,7 +33,7 @@ namespace E {
template <typename TYPE> int funcE(TYPE arg) { return(arg); }
}
-using E::funcE<int>; // expected-error{{using declaration can not refer to a template specialization}}
+using E::funcE<int>; // expected-error{{using declaration cannot refer to a template specialization}}
namespace F {
struct X;