2011-10-14 06:29:44 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
|
2009-11-28 12:44:28 +08:00
|
|
|
|
2010-01-13 17:01:02 +08:00
|
|
|
void operator "" (const char *); // expected-error {{expected identifier}}
|
2012-03-08 10:39:21 +08:00
|
|
|
void operator "k" foo(const char *); // \
|
|
|
|
expected-error {{string literal after 'operator' must be '""'}} \
|
|
|
|
expected-warning{{user-defined literal suffixes not starting with '_' are reserved}}
|
|
|
|
void operator "" tester (const char *); // \
|
|
|
|
expected-warning{{user-defined literal suffixes not starting with '_' are reserved}}
|