xref: /minix3/external/bsd/llvm/dist/clang/test/CXX/temp/temp.decls/temp.class.spec/p8-0x.cpp (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
2 
3 template<int ...Values> struct X1;
4 
5 template<int ...Values>
6 struct X1<0, Values+1 ...>; // expected-error{{non-type template argument depends on a template parameter of the partial specialization}}
7 
8 
9