blob: d0d9deb1d4f90580a61752c8c680ca40cf488d33 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail235.d(12): Error: expression typeid(char) is not a valid template value argument
---
*/
template Tuple(TPL...)
{
alias TPL Tuple;
}
auto K = Tuple!(typeid(char));
/*
TEST_OUTPUT:
---
fail_compilation/fail235.d(24): Error: expression typeid(char) is not a valid template value argument
---
*/
template Alias(alias A)
{
alias A Alias;
}
auto A = Alias!(typeid(char));