]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/runnable/test9259.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / runnable / test9259.d
1 // REQUIRED_ARGS: -de
2 // PERMUTE_ARGS: -inline -release -g -O
3
4 void test(int*[] arr...)
5 {
6 assert(arr.length == 1);
7 assert(*arr[0] == 5); // This assertion fails
8 }
9
10 void main()
11 {
12 int a = 5;
13 test([&a]);
14 }