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