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
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
trailing7.C
blob
b3397ea3b46fc91f399eddd10e451b9a9c0889b0
1
// PR c++/50365
2
// { dg-do compile { target c++11 } }
3
4
struct A { int i; };
5
6
struct B {
7
B();
8
A* f();
9
};
10
11
B::B()
12
{
13
int(f()->i);
14
}