mlua/tests/compile/lua_norefunwindsafe.rs

9 lines
137 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();
catch_unwind(|| lua.create_table().unwrap());
}