2019-05-22 07:17:31 +08:00
|
|
|
#define SOL_ALL_SAFETIES_ON 1
|
2018-09-28 13:27:38 +08:00
|
|
|
#include <sol/sol.hpp>
|
2018-03-16 05:16:28 +08:00
|
|
|
|
|
|
|
|
2019-05-22 07:17:31 +08:00
|
|
|
int main(int, char*[]) {
|
|
|
|
|
2018-03-16 05:16:28 +08:00
|
|
|
struct protect_me {
|
|
|
|
int gen(int x) {
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
sol::state lua;
|
|
|
|
lua.open_libraries(sol::lib::base);
|
2021-03-06 23:14:48 +08:00
|
|
|
lua.new_usertype<protect_me>(
|
|
|
|
"protect_me", "gen", sol::protect(&protect_me::gen));
|
2018-03-16 05:16:28 +08:00
|
|
|
|
|
|
|
lua.script(R"__(
|
|
|
|
pm = protect_me.new()
|
|
|
|
value = pcall(pm.gen,"wrong argument")
|
|
|
|
)__");
|
|
|
|
bool value = lua["value"];
|
2022-09-28 13:56:26 +08:00
|
|
|
SOL_ASSERT(!value);
|
2018-03-16 05:16:28 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|