cxx-typeof.cpp revision d7d5f0223bd30dfd618762349c6209dd1d5ea3e6
1// RUN: clang-cc -fsyntax-only -verify %s
2
3static void test() {
4  int *pi;
5  int x;
6  typeof pi[x] y;
7}
8