diff options
Diffstat (limited to 'clang/test/Parser/cxx0x-literal-operators.cpp')
-rw-r--r-- | clang/test/Parser/cxx0x-literal-operators.cpp | 4 |
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 6930adbe372..c5514601d11 100644 --- a/clang/test/Parser/cxx0x-literal-operators.cpp +++ b/clang/test/Parser/cxx0x-literal-operators.cpp @@ -1,5 +1,5 @@ // RUN: clang-cc -fsyntax-only -verify -std=c++0x %s void operator "" (); // expected-error {{expected identifier}} -void operator "k" foo(); // expected-error {{string literal after 'operator' must be '""'}} \ - // expected-error {{C++0x literal operator support is currently under development}} +void operator "k" foo(); // expected-error {{string literal after 'operator' must be '""'}} +void operator "" tester (int); |