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
/
pr71966-2.C
blob
aedd4cea7f3b30c5b990b15ce83bd9c67b1d3498
1
// PR c++/71966
2
// { dg-do compile { target c++11 } }
3
4
struct A
5
{
6
constexpr A (int); // { dg-message "never defined" }
7
constexpr operator int () const { return 0; }
8
int c;
9
};
10
11
template <int>
12
struct B {};
13
14
constexpr A a = 0; // { dg-error "before its definition" }
15
B<a> b;