mirror of
https://github.com/dlang/dmd.git
synced 2025-04-28 06:00:13 +03:00
8 lines
206 B
D
8 lines
206 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail19890b.d(8): Error: `void[$n$$?:64=LU$]` size 1 * $n$ exceeds $?:windows+32=0x1000000|0x7fffffff$ size limit for static array
|
|
---
|
|
*/
|
|
|
|
void[] f = cast(void[-2]) "a";
|