mlua/tests/compile-fail/scope_invariance.rs

27 lines
505 B
Rust
Raw Normal View History

extern crate rlua;
use rlua::*;
fn main() {
struct Test {
field: i32,
}
let lua = Lua::new();
lua.scope(|scope| {
let f = {
let mut test = Test { field: 0 };
scope
.create_function_mut(|_, ()| {
test.field = 42;
//~^ error: `test` does not live long enough
Ok(())
})
.unwrap()
};
f.call::<_, ()>(()).unwrap();
});
}