mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
14 lines
241 B
D
14 lines
241 B
D
// REQUIRED_ARGS: -m64
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail13434_m64.d(13): Error: cannot implicitly convert expression `()` of type `()` to `ulong`
|
|
---
|
|
*/
|
|
|
|
alias tuple(A...) = A;
|
|
void main()
|
|
{
|
|
float[] arr;
|
|
arr[tuple!()] = 0;
|
|
}
|