blob: 6ef669c219e6ac71cee1082d5ac65fcff0ccfd50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
// Test that conversions to base classes happen when calling
// operators.
// { dg-do run }
extern "C" void abort ();
struct B1;
struct B2;
B2* p;
B1* p2;
struct B1 {
virtual void f () {}
};
struct B2 {
int i;
bool operator!() { if (this != p) abort (); return true; }
operator void*() { if (this != p) abort (); return this; }
};
struct B3 : public B1, public B2 {
};
int main () {
B3 b;
p = (B2*) &b;
p2 = (B1*) &b;
bool b1 = b;
bool b2 = !b;
}
|