mlua/tests/compile_fail/ref_nounwindsafe.rs

10 lines
188 B
Rust
Raw Normal View History

2019-10-16 09:59:40 -04:00
use std::panic::catch_unwind;
use mlua::Lua;
fn main() {
let lua = Lua::new();
let table = lua.create_table().unwrap();
catch_unwind(move || table.set("a", "b").unwrap());
}