diff options
Diffstat (limited to 'clang/test/CXX/temp/temp.decls/temp.variadic/p5.cpp')
| -rw-r--r-- | clang/test/CXX/temp/temp.decls/temp.variadic/p5.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/CXX/temp/temp.decls/temp.variadic/p5.cpp b/clang/test/CXX/temp/temp.decls/temp.variadic/p5.cpp index 47581fee90a..d52d9c52a41 100644 --- a/clang/test/CXX/temp/temp.decls/temp.variadic/p5.cpp +++ b/clang/test/CXX/temp/temp.decls/temp.variadic/p5.cpp @@ -211,10 +211,10 @@ struct TestUnexpandedDecls : T{ // FIXME: Test for unexpanded parameter packs in each of the statements. -// FIXME: Once we have template argument deduction, we can test -// unexpanded parameter packs in partial specializations. -// template<typename ...Types> -// struct TestUnexpandedDecls<int, Types>; +// Test unexpanded parameter packs in partial specializations. + +template<typename ...Types> +struct TestUnexpandedDecls<int, Types>; // expected-error{{partial specialization contains unexpanded parameter pack 'Types'}} // Test for diagnostics in the presence of multiple unexpanded // parameter packs. |

