blob: 7ce6ebe6bc0d8fc1f9092841ca9e960dedb99667 [file] [log] [blame]
// { dg-do compile }
class One
{
public:
virtual unsigned long getSize () const;
};
class Two
{
virtual int run ();
};
int
Two::run ()
{
One list_arry[5][2];
int orig = 0;
if (list_arry[3][orig].getSize () > 0
|| list_arry[4][orig].getSize () > 0)
{
}
}