rt_gccstream/gcc/testsuite/g++.old-deja/g++.mike/misc6.C

12 lines
287 B
C

// { dg-do assemble }
// 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 - .*
};