4495766362
From-SVN: r23760
12 lines
128 B
C
12 lines
128 B
C
// Shows a problem with the default op= not being an implementation...
|
|
|
|
class C {
|
|
int i;
|
|
};
|
|
|
|
C a, b;
|
|
|
|
int main() {
|
|
a = b;
|
|
}
|