1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2
3 static void test() {
4 int *pi;
5 int x;
6 typeof pi[x] y;
7 }
8
9 // Part of rdar://problem/8347416; from the gcc test suite.
10 struct S {
11 int i;
12 __typeof(S::i) foo(); // expected-error {{invalid use of non-static data member 'i'}}
13 };
14