diff options
author | Douglas Gregor <dgregor@apple.com> | 2013-03-08 22:15:15 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2013-03-08 22:15:15 +0000 |
commit | c61361b102fcb9be7b64cc493fb797ea551eb8e7 (patch) | |
tree | f5f0588cccc3ffcff593c8d784a0d1de52a67a2f /test/SemaTemplate/instantiate-type.cpp | |
parent | bea522ff43a3f11c7a2bc7949119dbb9fce19e39 (diff) |
<rdar://problem/13094134> Don't try to wire up typedef names for invalid anonymous tag declarations encountered during template instantiation.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@176727 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/SemaTemplate/instantiate-type.cpp')
-rw-r--r-- | test/SemaTemplate/instantiate-type.cpp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/test/SemaTemplate/instantiate-type.cpp b/test/SemaTemplate/instantiate-type.cpp index f5d02707cb..2440a38f3e 100644 --- a/test/SemaTemplate/instantiate-type.cpp +++ b/test/SemaTemplate/instantiate-type.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -fsyntax-only %s +// RUN: %clang_cc1 -fsyntax-only -verify %s int* f(int); float *f(...); @@ -15,3 +15,14 @@ X<int>::typeof_type &iptr1 = iptr0; X<int>::typeof_expr &iptr2 = iptr0; X<float*>::typeof_expr &fptr1 = fptr0; + +namespace rdar13094134 { + template <class> + class X { + typedef struct { + Y *y; // expected-error{{unknown type name 'Y'}} + } Y; + }; + + X<int> xi; +} |