mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
11 lines
197 B
D
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];
|
|
}
|