| 25432 | using base_t::lua_state; |
| 25433 | |
| 25434 | basic_userdata() noexcept = default; |
| 25435 | template <typename T, meta::enable<meta::neg<std::is_same<meta::unqualified_t<T>, basic_userdata>>, meta::neg<std::is_same<base_t, stack_reference>>, is_lua_reference<meta::unqualified_t<T>>> = meta::enabler> |
| 25436 | basic_userdata(T&& r) noexcept |
| 25437 | : base_t(std::forward<T>(r)) { |
nothing calls this directly
no test coverage detected