| 28 | inline namespace sol2_tests_exceptions_functions_noexcept { |
| 29 | |
| 30 | struct T { |
| 31 | static int noexcept_function() noexcept { |
| 32 | return 0x61; |
| 33 | } |
| 34 | |
| 35 | int noexcept_method() noexcept { |
| 36 | return 0x62; |
| 37 | } |
| 38 | }; |
| 39 | |
| 40 | static int raw_noexcept_function(lua_State* L) noexcept { |
| 41 | return sol::stack::push(L, 0x63); |
no outgoing calls
no test coverage detected