Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
diag12480.d
blob: 01c2e4e465010335ec571bc3e064f48ca5c9cb2d [
file
] [
log
] [
blame
]
// 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
);