mlua/tests/compile/scope_userdata_borrow.stderr

14 lines
643 B
Plaintext
Raw Normal View History

2020-05-06 20:18:56 -04:00
error[E0597]: `ibad` does not live long enough
2022-04-13 09:30:52 -04:00
--> tests/compile/scope_userdata_borrow.rs:15:56
2020-05-06 20:18:56 -04:00
|
11 | lua.scope(|scope| {
2022-04-13 09:30:52 -04:00
| ----- has type `&mlua::Scope<'_, '1>`
2020-05-06 20:18:56 -04:00
...
15 | scope.create_nonstatic_userdata(MyUserData(&ibad)).unwrap();
| -------------------------------------------^^^^^--
| | |
| | borrowed value does not live long enough
| argument requires that `ibad` is borrowed for `'1`
16 | };
| - `ibad` dropped here while still borrowed