2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / inherit / null1.C
blob0908a01b91ceec9db4e51a907ac96976fcd2d188
1 // PR c++/5453: Test that we don't assume that the pointer target of a
2 // reference is non-null just because we know the reference isn't.
4 // { dg-do run }
6 struct V { };
7 struct A: virtual public V { };
9 A* ap;
10 A*& apr (ap);
12 int main ()
14   V* vp = apr;