1 // RUN: clang-cc -fsyntax-only -verify %s 2 // XFAIL 3 4 namespace N { 5 struct S {}; 6 S i; 7 extern S j; 8 } 9 10 int i = 2; 11 N::S N::j = i; 12