Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
other
/
pr28114.C
blob: d54fec960857aa4dc4afa9b979fcddb79ad9f60a [
file
] [
log
] [
blame
]
// Test to make sure we do not ICE on this invalid program.
template
<int>
void
foo
(
struct
{}*);
// { dg-message "" }
void
bar
()
{
foo
<
0
>(
0
);
// { dg-error "" }
}