repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* g++.dg/debug/pr71432.C: Fail on AIX.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
parse
/
constant1.C
blob
c8a948a576005c9366e883ac50bf99dcd1c2c0aa
1
// { dg-options -std=c++98 }
2
3
void f () {
4
switch (0) {
5
case (3, 0): // { dg-error "" }
6
break;
7
}
8
}
9
10
int g ();
11
12
struct S {
13
int i : (false ? g () : 1); // { dg-error "" }
14
};
15