diff options
Diffstat (limited to 'clang/test/Parser/cxx0x-literal-operators.cpp')
-rw-r--r-- | clang/test/Parser/cxx0x-literal-operators.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/test/Parser/cxx0x-literal-operators.cpp b/clang/test/Parser/cxx0x-literal-operators.cpp new file mode 100644 index 00000000000..b01cf06edbd --- /dev/null +++ b/clang/test/Parser/cxx0x-literal-operators.cpp @@ -0,0 +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}}
\ No newline at end of file |