1// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3namespace pr7801 {
4  extern void* x[];
5  void* dummy[] = { &x };
6}
7