blob: 935b0bac85c26fa6b1213319c6faedbced4d4d5a [file] [log] [blame]
// Shows a problem with the default op= not being an implementation...
class C {
int i;
};
C a, b;
int main() {
a = b;
}