mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
12 lines
214 B
D
12 lines
214 B
D
// REQUIRED_ARGS: -m32
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/diag12480.d(12): Error: static assert: `2u == 3u` is false
|
|
---
|
|
*/
|
|
|
|
module diag12480;
|
|
|
|
static immutable arr = ["a", "b"];
|
|
static assert(arr.length == 3);
|