| 6 | |
| 7 | |
| 8 | class RecursiveLazyProxy(LazyProxy[Any]): |
| 9 | @override |
| 10 | def __load__(self) -> Any: |
| 11 | return self |
| 12 | |
| 13 | def __call__(self, *_args: Any, **_kwds: Any) -> Any: |
| 14 | raise RuntimeError("This should never be called!") |
| 15 | |
| 16 | |
| 17 | def test_recursive_proxy() -> None: |
no outgoing calls