Update ChangeLog and version files for release
[official-gcc.git] / gcc / testsuite / g++.dg / torture / pr50672.C
blob614a35b6c8243f2ad7ffa6e0c25c564c0393ce3c
1 // { dg-do compile }
3 struct A
5   bool isHint();
6 };
7 class B
9   void makeLine( int *) const;
10   void drawLine() const; A* to() const;
11   void _print() const;
13 A a;
14 void  B::makeLine(int *p1) const
16   if (a.isHint() && to()->isHint()) ;
17   else {
18       if (p1) B::drawLine(); else B::_print();
19       return;
20   }
21   if (p1) B::drawLine(); else B::_print();