blob: f4a4d7606533d66cbd5833d81f7a823b59bb79d7 [file] [log] [blame]
/* REQUIRED_ARGS: -preview=dip1000
* TEST_OUTPUT:
---
fail_compilation/fail19881.d(12): Error: address of local variable `local` assigned to return scope `input`
---
*/
// https://issues.dlang.org/show_bug.cgi?id=19881
@safe int* test(return scope int* input) {
int local = 42;
input = &local;
return input;
}