mirror of
https://github.com/dlang/dmd.git
synced 2025-04-28 14:10:11 +03:00
9 lines
129 B
D
9 lines
129 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ccast.d(9): Error: C style cast illegal, use `cast(byte)i`
|
|
---
|
|
*/
|
|
|
|
int i;
|
|
byte b = (byte)i;
|