mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
11 lines
215 B
D
11 lines
215 B
D
// https://github.com/dlang/dmd/issues/21179
|
|
|
|
void bigEndianToNative(ubyte[2] a) {}
|
|
|
|
void main()
|
|
{
|
|
ubyte[] arr;
|
|
const ubyte[2] bytes;
|
|
bigEndianToNative(bytes);
|
|
auto b = cast(const ubyte[2][]) arr;
|
|
}
|