Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail13434_m32.d
blob: 0b1baaac2adc171da7a2611a17a454814c587399 [
file
] [
log
] [
blame
]
// REQUIRED_ARGS: -m32
/*
TEST_OUTPUT:
---
fail_compilation/fail13434_m32.d(13): Error: cannot implicitly convert expression `()` of type `()` to `uint`
---
*/
alias
tuple
(
A
...)
=
A
;
void
main
()
{
float
[]
arr
;
arr
[
tuple
!()]
=
0
;
}