From: Douglas Gregor Date: Mon, 7 Nov 2011 18:54:12 +0000 (+0000) Subject: Add missing part of test X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=21adcf3b5f4c748fbda7f276f75a33121cee6df1;p=clang Add missing part of test git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@143985 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Index/Inputs/reparse-instantiate.h b/test/Index/Inputs/reparse-instantiate.h new file mode 100644 index 0000000000..df90a6dd48 --- /dev/null +++ b/test/Index/Inputs/reparse-instantiate.h @@ -0,0 +1,14 @@ +template struct S; + +template void c(T) +{ +} + +template <> struct S +{ + void a() + { + c(&S::b); + } + void b() {} +};