You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error[E0597]: `baz` does not live long enough
--> test.rs:12:29
|
12 | map.insert("sign", &baz);
| ^^^ borrowed value does not live long enough
13 | Some(())
14 | });
| - borrowed value only lives until here
|
= note: borrowed value must be valid for the static lifetime...
Rust Nightly 1.22.0
如果注释掉
let mut map = map;
,为什么会报错?The text was updated successfully, but these errors were encountered: