d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail19881.d
blob62f3dc4310015e5a9dbaf0b5fcfa239cc4639843
1 /* REQUIRED_ARGS: -preview=dip1000
2 * TEST_OUTPUT:
3 ---
4 fail_compilation/fail19881.d(13): Error: address of local variable `local` assigned to return scope `input`
5 fail_compilation/fail19881.d(13): Error: address of variable `local` assigned to `input` with longer lifetime
6 ---
7 */
9 // https://issues.dlang.org/show_bug.cgi?id=19881
11 @safe int* test(return scope int* input) {
12 int local = 42;
13 input = &local;
15 return input;