repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
pr52440.C
blob
0210f53b9d9ba02c0a18a6545aee81d793775b06
1
// PR c++/52440
2
// { dg-do compile { target c++11 } }
3
4
template<bool>
5
struct V
6
{
7
typedef void type;
8
};
9
10
template<typename T>
11
struct X
12
{
13
template<typename>
14
static constexpr bool always_true()
15
{
16
return true;
17
}
18
19
template<typename U,
20
typename = typename V<always_true<U>()>::type>
21
X(U &&) {}
22
};
23
24
int main()
25
{
26
X<int> x(42);
27
}