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