blob: a717483b0f6096953f85d343d3538eb433c1bea4 [file] [log] [blame]
// { dg-do assemble }
// { dg-prune-output "note" }
// { dg-options "-std=c++98 -pedantic-errors" }
// GROUPS uncaught
// Cfront bug A.4 (See Language System Release Notes for the
// SPARCompiler C++ version 3.0)
struct assign {
assign& operator = (const assign&);
};
union U {
assign a; // { dg-error "" } member of union cannot have op= 9.4// ERROR - .*
};