mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
9 lines
277 B
D
9 lines
277 B
D
// REQUIRED_ARGS: -m32
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail37_m32.d(9): Error: `cast(float)4u / cast(float)8u - cast(float)2147483647` is not of integral type, it is a `float`
|
|
---
|
|
*/
|
|
|
|
ulong[cast(uint)((cast(float)int.sizeof/ulong.sizeof)-int.max>>2)+int.max>>2] hexarray;
|