aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.bugs/900210_10.C
blob: 26c17218e77134c5aedb5e981c7da0f9ff535ac5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// g++ 1.36.1 bug 900210_10

// g++ allows operator[] to be declared as a static member function.
// This is illegal.

// Cfront 2.0 passes this test.

// keywords: operator[], static function members

struct struct0 {
  static int operator[] ();		/* ERROR - */
};

int main () { return 0; }