mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-10 12:59:21 +03:00
9 lines
163 B
D
9 lines
163 B
D
// RUN: %ldc -run %s
|
|
|
|
void main()
|
|
{
|
|
int[2][1] arr;
|
|
assert(&(arr[0][0]) !is &(arr[0][1]));
|
|
ubyte RR = 0;
|
|
assert(&(arr[RR][0]) !is &(arr[RR][1]));
|
|
}
|