mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
8 lines
218 B
D
8 lines
218 B
D
/* REQUIRED_ARGS: -m32
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail19890b.d(8): Error: `void[cast(size_t)4294967294]` size 1 * 4294967294 exceeds 0x7fffffff size limit for static array
|
|
---
|
|
*/
|
|
|
|
void[] f = cast(void[-2]) "a";
|