Ensure the lifetime of temporary objects created for implicit conversions
()
| 315 | |
| 316 | |
| 317 | def test_implicit_conversion_life_support(): |
| 318 | """Ensure the lifetime of temporary objects created for implicit conversions""" |
| 319 | assert m.implicitly_convert_argument(UserType(5)) == 5 |
| 320 | assert m.implicitly_convert_variable(UserType(5)) == 5 |
| 321 | |
| 322 | assert "outside a bound function" in m.implicitly_convert_variable_fail(UserType(5)) |
| 323 | |
| 324 | |
| 325 | def test_operator_new_delete(capture): |