]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/fail_compilation/fail3150.d
d: Synchronize testsuite with upstream dmd
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail3150.d
CommitLineData
b4c522fa 1// REQUIRED_ARGS: -de
7da827c9
IB
2/*
3TEST_OUTPUT:
4---
5fail_compilation/fail3150.d(10): Error: cannot cast expression `[1, 2]` of type `int[]` to `ulong`
6---
7*/
b4c522fa
IB
8
9void main() {
10 ulong u = cast(ulong)[1,2];
11}