view gcc/testsuite/g++.old-deja/g++.mike/misc6.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

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