blob: 9e72ea266a18726ef304c7acb2fb88b869a5f047 [file] [log] [blame]
// { dg-do assemble }
// Test that failed lvalue-to-rvalue conversion of vf doesn't crash the
// compiler.
class f_class
{ }; // { dg-message "candidates" "candidates" }
// { dg-message "note" "note" { target *-*-* } 6 }
volatile f_class
ret_v_f_class()
{
f_class t;
return t;
}
int main(void)
{
volatile f_class vf;
0 ? ret_v_f_class() : vf; // { dg-error "match" } can't copy volatile lvalue
return 0;
}