diff options
author | Alex Orlenko <zxteam@protonmail.com> | 2022-02-19 14:15:15 +0000 |
---|---|---|
committer | Alex Orlenko <zxteam@protonmail.com> | 2022-03-20 20:30:20 +0000 |
commit | c322e028e2201fbb12a77caceb1dc97b1822ae54 (patch) | |
tree | 7d625c01e641a96516ea1042f2b4c6e8399e3285 /tests/thread.rs | |
parent | 6dc127f4eb500398ffd81edcb24d45353b0ff4cf (diff) | |
download | mlua-c322e028e2201fbb12a77caceb1dc97b1822ae54.zip |
Initial Luau support
Diffstat (limited to 'tests/thread.rs')
-rw-r--r-- | tests/thread.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/thread.rs b/tests/thread.rs index ab687ad..5873680 100644 --- a/tests/thread.rs +++ b/tests/thread.rs @@ -155,7 +155,8 @@ fn test_coroutine_from_closure() -> Result<()> { feature = "lua54", feature = "lua53", feature = "lua52", - feature = "luajit" + feature = "luajit", + feature = "luau" ))] let thrd: Thread = lua.load("coroutine.create(main)").eval()?; #[cfg(feature = "lua51")] |