blob: 2b3192ed2b6bb1a8b3c356eebfd58f21d3bb03e3 [file] [log] [blame]
// https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90650
// { dg-do compile }
class c
{
static f ()
{
return 0;
}
}
void g ()
{
if ([0] & c.f()) {} // { dg-error "array operation \\\[0\\\] & f\\(\\) without destination memory not allowed" }
}