summaryrefslogtreecommitdiff
path: root/tests/compile_fail/scope_callback_inner.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/compile_fail/scope_callback_inner.rs')
-rw-r--r--tests/compile_fail/scope_callback_inner.rs19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/compile_fail/scope_callback_inner.rs b/tests/compile_fail/scope_callback_inner.rs
deleted file mode 100644
index 56b56ba..0000000
--- a/tests/compile_fail/scope_callback_inner.rs
+++ /dev/null
@@ -1,19 +0,0 @@
-use mlua::{Lua, Table, Result};
-
-struct Test {
- field: i32,
-}
-
-fn main() {
- let lua = Lua::new();
- lua.scope(|scope| -> Result<()> {
- let mut inner: Option<Table> = None;
- let f = scope
- .create_function_mut(|_, t: Table| {
- inner = Some(t);
- Ok(())
- })?;
- f.call::<_, ()>(lua.create_table()?)?;
- Ok(())
- });
-}