blob: 7f61b7c437a60257527d40206388e8af840ea7ce [file] [log] [blame]
// { dg-additional-options -fmodules-ts }
module foo;
template <typename> class Y;
static_assert (sizeof (TPL<Y<char>, Y>::type) == 1);
static_assert (sizeof (TPL<Y<int>, Y>::type) != 1, "where's my specialization?");