(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.mike/
opr-as1.C
// { dg-do run  }
// Shows a problem with the default op= not being an implementation...

class C {
  int i;
};

C a, b;

int main() {
  a = b;
}