dmd/compiler/test/fail_compilation/fail3150.d
2022-07-09 18:53:07 +02:00

11 lines
197 B
D

// REQUIRED_ARGS: -de
/*
TEST_OUTPUT:
---
fail_compilation/fail3150.d(10): Error: cannot cast expression `[1, 2]` of type `int[]` to `ulong`
---
*/
void main() {
ulong u = cast(ulong)[1,2];
}