blob: 0ea60fdf461056ace4f99833e990b88f45ab2218 [file] [log] [blame]
error[E0515]: cannot return value referencing temporary value
--> $DIR/issue-11681.rs:23:10
|
LL | let testValue = &Test; //~ ERROR borrowed value does not live long enough
| ---- temporary value created here
LL | return testValue;
| ^^^^^^^^^ returns a value referencing data owned by the current function
error: aborting due to previous error
For more information about this error, try `rustc --explain E0515`.