(x: Annotated[int, Gt(0)])
| 45 | |
| 46 | |
| 47 | def positive_increment(x: Annotated[int, Gt(0)]): |
| 48 | y = x + 3 |
| 49 | assert_refined(y, Gt(3)) # x > 0 → x + 3 > 3 ✓ |
| 50 | z = x + 10 |
| 51 | assert_refined(z, Gt(10)) # x > 0 → x + 10 > 10 ✓ |
| 52 | |
| 53 | |
| 54 | assert verify(positive_increment) |
nothing calls this directly
no test coverage detected