ab' ++ 'cd' == 'abcd'.
(self, kernel)
| 1686 | assert _try_prove(claim) |
| 1687 | |
| 1688 | def test_string_concat_ground(self, kernel): |
| 1689 | """'ab' ++ 'cd' == 'abcd'.""" |
| 1690 | claim = StrConcat(StringVal("ab"), StringVal("cd")) == StringVal("abcd") |
| 1691 | assert _try_prove(claim) |
| 1692 | |
| 1693 | |
| 1694 | # ------------------------------------------------------------------ |
nothing calls this directly
no test coverage detected