mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
7 lines
165 B
D
7 lines
165 B
D
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);
|
|
}
|