aboutsummaryrefslogtreecommitdiff
path: root/test/CXX/basic/basic.lookup/basic.lookup.unqual/p14.cpp
blob: 141a5732c1d3f381a8e06a3198b9a3e31912ed7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// RUN: clang-cc -fsyntax-only -verify %s
// XFAIL: *

namespace N { 
  struct S {};
  S i; 
  extern S j;
} 

int i = 2; 
N::S N::j = i;