OSDN Git Service

* g++.dg/parse/attr-externally-visible-1.C: Likewise.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / overload / operator2.C
1 // PR c++/19966
2 // { dg-do compile }
3
4 struct A
5 {
6   static operator int(); // { dg-error "must be a nonstatic" }
7 };
8
9 struct B
10 {
11   static int operator*(); // { dg-error "must be either" }
12 };
13
14 static operator int(); // { dg-error "must be a nonstatic" }