(self)
| 4173 | |
| 4174 | class TestRecFunction: |
| 4175 | def test_rec_function(self): |
| 4176 | f = RecFunction("f", IntSort(), IntSort()) |
| 4177 | assert isinstance(f, FuncDeclRef) |
| 4178 | |
| 4179 | def test_rec_add_definition(self): |
| 4180 | f = RecFunction("f", IntSort(), IntSort()) |
nothing calls this directly
no test coverage detected