aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.law/typeck4.C
blob: 9b510c057259c64a85c0f7a12fd70d3f3b777b4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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;
}