dmd/compiler/test/fail_compilation/test22818.d
2022-07-09 18:53:07 +02:00

21 lines
269 B
D

/* REQUIRED_ARGS: -preview=dip1000
* TEST_OUTPUT:
---
fail_compilation/test22818.d(104): Error: scope parameter `c` may not be returned
---
*/
// issues.dlang.org/show_bug.cgi?id=22818
#line 100
@safe:
ref int g(C c ...)
{
return c.x;
}
class C
{
int x;
}