repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix PR48484
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
lto
/
20090313_1.C
blob
088792b2dd323f0dc327e9da25da55dadc50f182
1
struct Foo {
2
virtual void X();
3
virtual void Y();
4
};
5
struct Bar: public Foo {
6
Bar(Foo *);
7
void Y();
8
};
9
void Baz() {
10
Foo f;
11
Bar b(&f);
12
}