2019-05-21 19:17:31 -04:00
|
|
|
#define SOL_ALL_SAFETIES_ON 1
|
2018-09-27 22:27:38 -07:00
|
|
|
#include <sol/sol.hpp>
|
2018-02-24 17:19:16 -05:00
|
|
|
|
|
|
|
|
2018-02-28 01:56:11 -05:00
|
|
|
int main(int, char*[]) {
|
2018-02-24 17:19:16 -05:00
|
|
|
|
|
|
|
struct test {
|
|
|
|
int blah = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
test t;
|
|
|
|
sol::state lua;
|
2021-03-06 01:03:23 -05:00
|
|
|
lua.set_function("f", [&t]() { return t; });
|
|
|
|
lua.set_function("g", [&t]() -> test& { return t; });
|
2018-02-24 17:19:16 -05:00
|
|
|
|
|
|
|
lua.script("t1 = f()");
|
|
|
|
lua.script("t2 = g()");
|
|
|
|
|
|
|
|
test& from_lua_t1 = lua["t1"];
|
|
|
|
test& from_lua_t2 = lua["t2"];
|
|
|
|
|
|
|
|
// not the same: 'f' lambda copied
|
2021-03-06 01:03:23 -05:00
|
|
|
sol_c_assert(&from_lua_t1 != &t);
|
2018-02-24 17:19:16 -05:00
|
|
|
// the same: 'g' lambda returned reference
|
2021-03-06 01:03:23 -05:00
|
|
|
sol_c_assert(&from_lua_t2 == &t);
|
2018-02-24 17:19:16 -05:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|