blob: ba4655e7025b39735eaaa902a5b1b094cc2df1f5 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail92.d(15): Error: invalid `foreach` aggregate `t` of type `typeof(null)`
fail_compilation/fail92.d(23): Error: template instance `fail92.crash!(typeof(null))` error instantiating
---
*/
// [25]
template crash(T)
{
void crash(T t)
{
foreach (u; t)
{
}
}
}
void main()
{
crash(null);
}