d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / retscope5.d
bloba4c8d58ae3701687150c43ecbab2992eade82dac
1 /*
2 REQUIRED_ARGS: -preview=dip1000
3 */
5 /*
6 TEST_OUTPUT:
7 ---
8 fail_compilation/retscope5.d(5010): Error: address of variable `t` assigned to `p` with longer lifetime
9 ---
12 #line 5000
14 // https://issues.dlang.org/show_bug.cgi?id=17725
16 void test() @safe
18 int* p;
19 struct T {
20 int a;
22 void escape(ref T t) @safe {
23 p = &t.a; // should not compile