mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
14 lines
217 B
C++
14 lines
217 B
C++
|
#define SOL_ALL_SAFETIES_ON 1
|
||
|
|
||
|
#include <sol/sol.hpp>
|
||
|
|
||
|
int regression_1008() {
|
||
|
|
||
|
sol::state lua;
|
||
|
lua.create_named_table("t");
|
||
|
|
||
|
sol::table t = lua["t"];
|
||
|
t["f"] = sol::as_function([]() {});
|
||
|
|
||
|
return 0;
|
||
|
}
|