8sa1-gcc/gcc/testsuite/g++.old-deja/g++.mike/opr-as1.C
Jason Merrill 4495766362 fix implicit int
From-SVN: r23760
1998-11-22 18:23:45 -05:00

12 lines
128 B
C

// Shows a problem with the default op= not being an implementation...
class C {
int i;
};
C a, b;
int main() {
a = b;
}