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
Be careful about comdat boundary in ICF (PR ipa/82352).
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
inherit
/
covariant1.C
blob
978c3e8255a67733d66622269bbdf0e8b456f850
1
// PR c++/5607
2
3
// { dg-do run }
4
5
class A {
6
public:
7
virtual A* getThis() { return this; }
8
};
9
10
class B {
11
int a;
12
public:
13
virtual B* getThis() { return this; }
14
};
15
16
class AB : public A, public B {
17
public:
18
virtual AB* getThis() { return this; }
19
};
20
21
int main ()
22
{
23
AB* ab = new AB();
24
25
A* a = ab;
26
B* b = ab;
27
28
if (a->getThis() != a
29
|| b->getThis() != b)
30
return 1;
31
32
return 0;
33
}