Files
RustPython/Lib/test/typinganndata/ann_module8.py
NakanoMiku39 06b9b4938d Add Lib/test/typinganndata folder
cpython version: 3.12
2023-11-09 15:05:04 +08:00

11 lines
177 B
Python
Vendored

# Test `@no_type_check`,
# see https://bugs.python.org/issue46571
class NoTypeCheck_Outer:
class Inner:
x: int
def NoTypeCheck_function(arg: int) -> int:
...