aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Modules/_xxtestfuzz/fuzz_pycompile_corpus/input1.py
blob: c43994dda29eed93345d132c9321b80b4933137b (plain) (blame)
1
2
3
4
5
6
7
from __future__ import annotations

def test() -> None:
    x: list[int] = []
    x: dict[int, str] = {}
    x: set[bytes] = {}
    print(5 + 42 * 3, x)