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
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
constexpr-synth1.C
blob
27375e2cf60fa7105015995908c3c072e0d25375
1
// PR c++/46472
2
// { dg-do compile { target c++11 } }
3
4
template<class T> struct A {
5
T t;
6
constexpr A(){}
7
};
8
9
struct B
10
{
11
A<int> a;
12
};
13
14
B b;