"""Some correct syntax for variable annotation here.More examples are in test_grammar and test_parser."""fromtypingimportno_type_check,ClassVari:int=1j:intx:float=i/10deff():classC:...returnC()f().new_attr:object=object()classC:def__init__(self,x:int)->None:self.x=xc=C(5)c.new_attr:int=10__annotations__={}@no_type_checkclassNTC:defmeth(self,param:complex)->None:...classCV:var:ClassVar['CV']CV.var=CV()