Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
union1.C
blob: 37424a1f4e464892bb04ba4a97ac804a756e7a02 [
file
] [
log
] [
blame
]
// { dg-do assemble }
class
A
{
private
:
int
myInt
;
public
:
A
&
operator
=
(
int
right
)
{
myInt
=
right
;
return
*
this
;}
};
union
B
{
char
f1
;
A f2
;
// { dg-bogus "" } non-copy assignment op is OK
};