mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
24 lines
367 B
D
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);
|
|
}
|