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
/
pr105256.C
blob
a97949d796a84c930faf262642e4aefd34638438
1
// PR c++/105256
2
// { dg-do compile { target c++11 } }
3
4
int bar (int &);
5
6
struct S {
7
struct T {
8
struct U {
9
int i = bar (i);
10
} u;
11
};
12
};
13
14
void
15
foo (S::T *p)
16
{
17
*p = {};
18
}