A reproduction of the FastAPI's `Body` param.
| 268 | |
| 269 | def test_fastapi_compatibility_hack() -> None: |
| 270 | class Body(FieldInfo): |
| 271 | """A reproduction of the FastAPI's `Body` param.""" |
| 272 | |
| 273 | field = Body() |
| 274 | # Assigning after doesn't update `_attributes_set`, which is currently |
no outgoing calls