diff options
| author | Ed Schouten <ed@FreeBSD.org> | 2009-06-22 08:08:35 +0000 |
|---|---|---|
| committer | Ed Schouten <ed@FreeBSD.org> | 2009-06-22 08:08:35 +0000 |
| commit | b897c8660c4ff7037dde81b9645737bc1c992abe (patch) | |
| tree | b6403365e77095a79062d3379c9e6aea0df5f088 /test/CXX/basic/basic.lookup/basic.lookup.unqual/p14.cpp | |
| parent | 7ef7bab7e3d06f660b059b903c231f100bb13cc5 (diff) | |
Notes
Diffstat (limited to 'test/CXX/basic/basic.lookup/basic.lookup.unqual/p14.cpp')
| -rw-r--r-- | test/CXX/basic/basic.lookup/basic.lookup.unqual/p14.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/CXX/basic/basic.lookup/basic.lookup.unqual/p14.cpp b/test/CXX/basic/basic.lookup/basic.lookup.unqual/p14.cpp new file mode 100644 index 000000000000..b9b136c5061b --- /dev/null +++ b/test/CXX/basic/basic.lookup/basic.lookup.unqual/p14.cpp @@ -0,0 +1,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; |
