Const("s", StringSort()) returns StringRef.
(self)
| 1436 | assert isinstance(r, StringRef) |
| 1437 | |
| 1438 | def test_const_string_sort(self): |
| 1439 | """Const("s", StringSort()) returns StringRef.""" |
| 1440 | s = Const("s", StringSort()) |
| 1441 | assert isinstance(s, StringRef) |
| 1442 | |
| 1443 | def test_strings_helper(self): |
| 1444 | a, b, c = Strings("a b c") |
nothing calls this directly
no test coverage detected