1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/diag10221.d(10): Error: cannot implicitly convert expression `256` of type `int` to `ubyte`
5 ---
6 */
7 
main()8 void main()
9 {
10     foreach(ref ubyte i; 0..256) {}
11 }
12