| 580 | TEST_CASE("pusher/constness", "Make sure more types can handle being const and junk") { |
| 581 | struct Foo { |
| 582 | Foo(const sol::function& f) : _f(f) { |
| 583 | } |
| 584 | const sol::function& _f; |
| 585 | |
| 586 | const sol::function& f() const { |
nothing calls this directly
no outgoing calls
no test coverage detected