blob: 9b510c057259c64a85c0f7a12fd70d3f3b777b4d [file] [log] [blame]
// Build don't link:
// GROUPS passed typeck
class A {
public:
const int &operator[]( int i );
private:
int k;
};
const int& A::operator[]( int i )
{
return k;
}
void ff( A &anA )
{
int &ani = anA[0];// ERROR -
ani = 7;
}