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
In gcc/objc/: 2010-11-13 Nicola Pero <nicola.pero@meta-innovation.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
lto
/
20081118-1_0.C
blob
99e024f9e516d1e1b1b635cc23297410087bf310
1
/* { dg-lto-do link } */
2
3
class C {
4
public:
5
C();
6
virtual ~C();
7
virtual void foo();
8
};
9
void bar() {
10
new C();
11
}
12
13
C::C() {
14
15
}
16
17
C::~C() {
18
19
}
20
21
void C::foo() {
22
}
23
24
int main(void)
25
{
26
return 0;
27
}