rt_gccstream/gcc/testsuite/g++.dg/other/error31.C

14 lines
244 B
C

// PR c++/35335
// { dg-do compile }
// { dg-options "" }
// { dg-bogus "not supported by" "" { target *-*-* } 0 }
struct A {}; // { dg-message "note: candidate is" }
void
foo ()
{
A a;
a = ({ { 1; } }); // { dg-error "no match for" }
}