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