d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail92.d
blobba4655e7025b39735eaaa902a5b1b094cc2df1f5
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail92.d(15): Error: invalid `foreach` aggregate `t` of type `typeof(null)`
5 fail_compilation/fail92.d(23): Error: template instance `fail92.crash!(typeof(null))` error instantiating
6 ---
7 */
9 // [25]
11 template crash(T)
13 void crash(T t)
15 foreach (u; t)
21 void main()
23 crash(null);