aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/udlit-member-neg.C
blob: 2a3145254575d57dd7aff44d5b59e838d3d7f032 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// { dg-do compile { target c++11 } }

class Foo
{
public:
  Foo() { }
  int operator"" _Bar(char32_t);  // { dg-error "must be a non-member function" }
};

int i = operator"" _Bar(U'x');  // { dg-error "was not declared in this scope" }
int j = U'x'_Bar;  // { dg-error "unable to find character literal operator" }

int
Foo::operator"" _Bar(char32_t)  // { dg-error "must be a non-member function" }
{ return 42; }