| 232 | // Exercises overload_cast with ref-qualified member function pointers. |
| 233 | struct RefQualifiedOverloaded { |
| 234 | py::str method(int) & { return "(int) &"; } |
| 235 | py::str method(int) const & { return "(int) const &"; } |
| 236 | py::str method(float) && { return "(float) &&"; } |
| 237 | py::str method(float) const && { return "(float) const &&"; } |
nothing calls this directly
no outgoing calls
no test coverage detected