(self, ctx: Context)
| 1660 | self.fail(f'Cannot assign to final {kind} "{unmangle(name)}"', ctx) |
| 1661 | |
| 1662 | def protocol_members_cant_be_final(self, ctx: Context) -> None: |
| 1663 | self.fail("Protocol member cannot be final", ctx) |
| 1664 | |
| 1665 | def final_without_value(self, ctx: Context) -> None: |
| 1666 | self.fail("Final name must be initialized with a value", ctx) |
no test coverage detected