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-defarg.C
blob
eaa3fbdfdb4b2d719a23b8fc97c7812a40c38214
1
// PR c++/46335
2
// { dg-do compile { target c++11 } }
3
4
struct T { };
5
struct A {
6
A(const T &tr =T()) {}
7
};
8
struct B {
9
A k;
10
};
11
B kk_;
12
A fk_;