summaryrefslogtreecommitdiffstats
path: root/clang/test/Parser/cxx0x-literal-operators.cpp
diff options
context:
space:
mode:
authorAlexis Hunt <alercah@gmail.com>2010-08-29 22:39:32 +0000
committerAlexis Hunt <alercah@gmail.com>2010-08-29 22:39:32 +0000
commit8591e9e06f1393b5b0f51125786ec6e4f5127baf (patch)
tree4011055b3e7f8e305101e424aeb4b899176233f0 /clang/test/Parser/cxx0x-literal-operators.cpp
parentea05bf2259420408fff9f04f1b0d6899ef8c82bd (diff)
downloadbcm5719-llvm-8591e9e06f1393b5b0f51125786ec6e4f5127baf.tar.gz
bcm5719-llvm-8591e9e06f1393b5b0f51125786ec6e4f5127baf.zip
Fix some test-breaking that snuck into my previous commit
llvm-svn: 112460
Diffstat (limited to 'clang/test/Parser/cxx0x-literal-operators.cpp')
-rw-r--r--clang/test/Parser/cxx0x-literal-operators.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Parser/cxx0x-literal-operators.cpp b/clang/test/Parser/cxx0x-literal-operators.cpp
index 5bebb0a707a..cc979b3ef41 100644
--- a/clang/test/Parser/cxx0x-literal-operators.cpp
+++ b/clang/test/Parser/cxx0x-literal-operators.cpp
@@ -1,5 +1,5 @@
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++0x %s
void operator "" (const char *); // expected-error {{expected identifier}}
-void operator "k"_foo(const char *); // expected-error {{string literal after 'operator' must be '""'}}
-void operator ""_tester (const char *);
+void operator "k" _foo(const char *); // expected-error {{string literal after 'operator' must be '""'}}
+void operator "" _tester (const char *);
OpenPOWER on IntegriCloud