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
PR c++/85765 - SFINAE and non-type default template arg.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
scoped_enum3.C
blob
67a3d1763d08b3127ca1f0a6125b6c66d9c3511f
1
// PR c++/60994
2
// { dg-do compile { target c++11 } }
3
4
enum struct A
5
{
6
n = 3
7
};
8
9
A
10
foo()
11
{
12
int A;
13
return A::n;
14
}