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

14 lines
186 B
C

// { dg-do assemble }
// Origin: Jakub Jelinek <jakub@redhat.com>
class foo {
public:
foo(int);
};
void bar(bool x)
{
if(x)
foo *a = new foo(foo::not); // { dg-error "" }
}