(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.other/
crash26.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 "" } 
}