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
/
nsdmi-defer3.C
blob
90f910285cd5edb3a8f0b1a68a87520dc2fb18ea
1
// Do NSDMI get deferred instantiation?
2
// { dg-do compile { target c++11 } }
3
4
template <class T>
5
struct A
6
{
7
T t = T(42);
8
constexpr A() { }
9
A(T t): t(t) { }
10
};
11
12
struct B { };
13
14
#define SA(X) static_assert(X,#X)
15
16
constexpr A<int> a1;
17
SA(a1.t == 42);
18
19
A<B> a2 {B()};