blob: e1d1b1f98db2ba7d4fcb6b2e08f24f39f7ae1ee1 [file] [log] [blame]
Anders Carlsson941df7d2009-06-12 19:58:00 +00001// RUN: clang-cc -fsyntax-only -verify %s -std=c++0x
2
3// Parsing type parameter packs.
4template <typename ... Args> struct T1 {};
5template <typename ... > struct T2 {};
6