d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / test22023.d
bloba0f553ba5bffbcd0aa90557e3864a024d55a5b34
1 /* TEST_OUTPUT:
2 ---
3 fail_compilation/test22023.d(102): Error: typesafe variadic function parameter `a` of type `int[]` cannot be marked `return`
4 fail_compilation/test22023.d(107): Error: typesafe variadic function parameter `c` of type `test22023.C` cannot be marked `return`
5 ---
6 */
8 // issues.dlang.org/show_bug.cgi?id=22023
10 #line 100
12 @safe:
13 ref int f(return int[] a ...)
15 return a[2];
18 ref int g(return C c ...)
20 return c.x;
23 class C
25 int x;