hanchenye-llvm-project/clang/test/SemaTemplate/variadic-class-template-1.cpp

5 lines
315 B
C++

// RUN: clang-cc -fsyntax-only -verify %s -std=c++0x
template<typename ... Args = int> struct S1 { }; // expected-error{{template parameter pack cannot have a default argument}}
template<typename ... Args, typename T> struct S2 { }; // expected-error{{template parameter pack must be the last template parameter}}