rt_gccstream/gcc/testsuite/g++.old-deja/g++.ns/koenig2.C

11 lines
191 B
C

// { dg-do assemble }
// { dg-options "" }
// Check association of {error} for Koenig lookup
struct QString { operator void * (); };
int foo()
{
QString bar;
return (bar == __null );
}