mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
13 lines
110 B
D
13 lines
110 B
D
// REQUIRED_ARGS: -wi
|
|
|
|
void main()
|
|
{
|
|
int[1] a;
|
|
int[] b = [1];
|
|
|
|
a = 1;
|
|
|
|
b[] = a;
|
|
|
|
b = a;
|
|
}
|