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
2013-09-12 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
parse
/
enum8.C
blob
83dd6e0e18f580e03858f02ed83f77e8497a3c4f
1
// PR c++/16603
2
3
char const c = 'q';
4
5
enum
6
{
7
x = c,
8
y = sizeof(x)
9
};
10
11
int test[y == sizeof(char) ? 1 : -1];