summaryrefslogtreecommitdiffstats
path: root/test/Parser/cxx0x-literal-operators.cpp
blob: c5514601d11615e9c6109df6a02c34e9dcc18965 (plain)
1
2
3
4
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 '""'}}
void operator "" tester (int);