mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
14 lines
219 B
D
14 lines
219 B
D
// REQUIRED_ARGS: -de
|
|
// PERMUTE_ARGS: -inline -release -g -O
|
|
|
|
void test(int*[] arr...)
|
|
{
|
|
assert(arr.length == 1);
|
|
assert(*arr[0] == 5); // This assertion fails
|
|
}
|
|
|
|
void main()
|
|
{
|
|
int a = 5;
|
|
test([&a]);
|
|
}
|