aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/opr-as1.C
blob: 935b0bac85c26fa6b1213319c6faedbced4d4d5a (plain)
1
2
3
4
5
6
7
8
9
10
11
// Shows a problem with the default op= not being an implementation...

class C {
  int i;
};

C a, b;

int main() {
  a = b;
}