(self)
| 6007 | pass |
| 6008 | |
| 6009 | def test_cannot_init(self): |
| 6010 | with self.assertRaises(TypeError): |
| 6011 | ClassVar() |
| 6012 | with self.assertRaises(TypeError): |
| 6013 | type(ClassVar)() |
| 6014 | with self.assertRaises(TypeError): |
| 6015 | type(ClassVar[Optional[int]])() |
| 6016 | |
| 6017 | def test_no_isinstance(self): |
| 6018 | with self.assertRaises(TypeError): |
nothing calls this directly
no test coverage detected