mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 12:20:54 -05:00
5 lines
275 B
C++
5 lines
275 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++0x %s
|
|
|
|
void operator "" (const char *); // expected-error {{expected identifier}}
|
|
void operator "k" foo(const char *); // expected-error {{string literal after 'operator' must be '""'}}
|
|
void operator "" tester (const char *);
|