dmd/compiler/test/fail_compilation/fail92.d
2022-07-09 18:53:07 +02:00

24 lines
367 B
D

/*
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);
}