Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
constexpr-synth1.C
blob: 27375e2cf60fa7105015995908c3c072e0d25375 [
file
] [
log
] [
blame
]
// PR c++/46472
// { dg-do compile { target c++11 } }
template
<
class
T
>
struct
A
{
T t
;
constexpr
A
(){}
};
struct
B
{
A
<int>
a
;
};
B b
;