rt_gccstream/gcc/testsuite/g++.old-deja/g++.other/cond2.C

12 lines
223 B
C

// { dg-do assemble }
// Origin: Loring Holden <lsh@cs.brown.edu>
class Wpt {};
class RAYhit {
protected:
Wpt _nearpt;
public:
Wpt surf () const { return true ? Wpt(): _nearpt; }
};