OSDN Git Service

fix implicit int
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.mike / opr-as1.C
1 // Shows a problem with the default op= not being an implementation...
2
3 class C {
4   int i;
5 };
6
7 C a, b;
8
9 int main() {
10   a = b;
11 }