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" }