(self, kernel)
| 823 | assert _try_prove(PrefixOf(StringVal("ab"), StringVal("abcd"))) |
| 824 | |
| 825 | def test_length_nonneg(self, kernel): |
| 826 | x = String("x") |
| 827 | assert _try_prove(Length(x) >= IntVal(0)) |
| 828 | |
| 829 | |
| 830 | # =================================================================== |
nothing calls this directly
no test coverage detected