FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / opeq3.C
blob1152aa089176f2f71dc37805eff417389b49c610
1 // Bug: g++ generates code for assignment in invalid situations.
2 // Build don't link:
4 class X {
5   int& a;
6 public:
7   X(int& i): a(i) { };
8 };
10 void foo ()
12   int one=1, two=2;
13   X a(one), b(two);
14   a = b;                        // ERROR - no assignment semantics defined