blob: 03e55583d03583f24989bb27a35bba3963acabc4 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
// Copyright (C) 2005 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 4 Apr 2005 <nathan@codesourcery.com>
// { dg-do run }
// PR 20746: Covariant return pointer could be null.
// Origin: yanliu@ca.ibm.com
// nathan@codesourcery.com
struct A {
virtual void One ();
};
struct B {
virtual B *Two ();
virtual B &Three ();
};
struct C : A, B
{
virtual C *Two ();
virtual C &Three ();
};
void A::One () {}
B *B::Two() {return this;}
B &B::Three() {return *this;}
C *C::Two () {return 0;}
C &C::Three () {return *(C *)0;}
B *Foo (B *b)
{
return b->Two ();
}
B &Bar (B *b)
{
return b->Three ();
}
int main ()
{
C c;
/* We should not adjust a null pointer. */
if (Foo (&c))
return 1;
/* But we should adjust a (bogus) null reference. */
if (!&Bar (&c))
return 2;
return 0;
}
|