blob: a92282bb737b78e645c57d32edf678a58caf112f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// 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;
}
|