Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
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
)
{}
}