Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
diag10221.d
blob: 14338ec4a46808e0329f12f0b21fc1f8b0441c4b [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/diag10221.d(10): Error: cannot implicitly convert expression `256` of type `int` to `ubyte`
---
*/
void
main
()
{
foreach
(
ref
ubyte i
;
0.
.
256
)
{}
}