ann_module8.py 177 B

12345678910
  1. # Test `@no_type_check`,
  2. # see https://bugs.python.org/issue46571
  3. class NoTypeCheck_Outer:
  4. class Inner:
  5. x: int
  6. def NoTypeCheck_function(arg: int) -> int:
  7. ...