blob: 9133d748cd74aae83a99b41fd701060764dd5fc8 [file] [log] [blame]
// { 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;
}