opr-as1.C   [plain text]


// { 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;
}