Files
mlua-rs-mlua/tests/compile_fail/lua_norefunwindsafe.rs
T
2019-11-04 22:23:15 +00:00

9 lines
137 B
Rust

use std::panic::catch_unwind;
use mlua::Lua;
fn main() {
let lua = Lua::new();
catch_unwind(|| lua.create_table().unwrap());
}