Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
crash26.C
blob: c9a12d0fbb626a1b5e9be372aa470c79582fbe8c [
file
] [
log
] [
blame
]
// { 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 "" }
}