d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / test17422.d
blob80f8fbe2613d69e3d4e0872e17787f779033743d
1 /*
2 REQUIRED_ARGS: -preview=dip1000
3 TEST_OUTPUT:
4 ---
5 fail_compilation/test17422.d(23): Error: scope variable `p` may not be returned
6 ---
7 */
8 struct RC
10 Object get() return @trusted
12 return cast(Object) &store[0];
15 private:
16 ubyte[__traits(classInstanceSize, Object)] store;
19 Object test() @safe
21 RC rc;
22 auto p = rc.get; // p must be inferred as scope variable, works for int*
23 return p;