1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// PR 14875: When using 'or' keyword, the error message speaks of a '||' token // { dg-do compile } // { dg-options "" } using namespace std; class Sample { public: Sample(); void or(long Digital); // { dg-error "before .or. token" } }; Sample::Sample() { } void Sample::or(long Digital) // { dg-error "before .or. token" } { }