Files
2020-05-12 03:16:29 +01:00

10 lines
188 B
Rust

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());
}