Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
runnable
/
test15913.d
blob: 5c2f5d5553210c86e43a72900fc471039fe16b88 [
file
] [
log
] [
blame
]
void
main
()
//test10282()
{
//const int[3] a4 = [1, 3, 6] * 3;
immutable
int
[
3
]
a5
=
[
1
,
3
,
6
]
*
3
;
assert
(
a5
[
0
]
==
3
&&
a5
[
1
]
==
9
&&
a5
[
2
]
==
18
);
}