2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / opr-as1.C
blob9133d748cd74aae83a99b41fd701060764dd5fc8
1 // { dg-do run  }
2 // Shows a problem with the default op= not being an implementation...
4 class C {
5   int i;
6 };
8 C a, b;
10 int main() {
11   a = b;