(self)
| 1470 | self.assert_union_result(t, [self.fx.a, self.fx.b]) |
| 1471 | |
| 1472 | def test_generics(self) -> None: |
| 1473 | t = UnionType.make_union([self.fx.ga, self.fx.gb]) |
| 1474 | self.assert_union_result(t, [self.fx.ga, self.fx.gb]) |
| 1475 | |
| 1476 | def assert_union_result(self, t: ProperType, expected: list[Type]) -> None: |
| 1477 | t2 = remove_instance_last_known_values(t) |
nothing calls this directly
no test coverage detected