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
/
pr66243.C
blob
41465a039265a3f30c4b4c46fdfe177c575fbabe
1
// { dg-do compile { target c++11 } }
2
3
enum class A
4
{
5
X
6
};
7
8
enum class B
9
{
10
X = A::X // { dg-error "could not convert" }
11
};
12