rt_gccstream/gcc/testsuite/g++.old-deja/g++.martin/conv1.C

15 lines
115 B
C

// { dg-do run }
struct S{
operator bool()
{
return true;
}
};
int main()
{
S a;
if (S &b = a);
}