Sign in
llvm
/
clang
/
a5728872c7702ddd09537c95bc3cbd20e1f2fb09
/
.
/
test
/
Parser
/
cxx0x-literal-operators.cpp
blob: 830754e56ae0afaa4391cc852cd3654086f32c0e [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -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 '""'}}
void
operator
""
tester
(
int
);