(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
ccast.d
/*
TEST_OUTPUT:
---
fail_compilation/ccast.d(9): Error: C style cast illegal, use `cast(byte)i`
---
*/

int i;
byte b = (byte)i;