aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/overload/operator2.C
blob: aba1622442c62f87fd5d3f368af39420ce1fd04f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// PR c++/19966
// { dg-do compile }

struct A
{
  static operator int(); // { dg-error "must be a nonstatic" }
};

struct B
{
  static int operator*(); // { dg-error "must be either" }
};

static operator int(); // { dg-error "must be a nonstatic" }