commit | 3f4d3d356cd5b75cd645edcbd67bde4941c9af4f | [log] [tgz] |
---|---|---|
author | Douglas Gregor <doug.gregor@gmail.com> | Fri May 29 14:26:40 2009 +0000 |
committer | Douglas Gregor <doug.gregor@gmail.com> | Fri May 29 14:26:40 2009 +0000 |
tree | 6fd3f779d4d750548b297f0c153f8050ea1bc933 | |
parent | 246d53b370f2a57ed7386418d5123ce9b69459b3 [diff] [blame] |
Follow-on test case for template instantiation of interesting DeclGroups git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72569 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/SemaTemplate/instantiate-declref.cpp b/test/SemaTemplate/instantiate-declref.cpp index 590f241..051c605 100644 --- a/test/SemaTemplate/instantiate-declref.cpp +++ b/test/SemaTemplate/instantiate-declref.cpp
@@ -55,6 +55,9 @@ typedef T type; type t2 = s1.x; + typedef struct { T z; } type2; + type2 t3 = { s1.x }; + Inner i1; i1.foo(); Inner<T> i2;