blob: 9f2b0807d2d6b8ee74bfd4a3b5e929ab77c70e4c [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3// Type parameter packs.
4template <typename ... > struct T1 {}; // expected-error{{variadic templates are only allowed in C++0x}}
5