xref: /third_party/python/Lib/test/ann_module5.py (revision 7db96d56)
1# Used by test_typing to verify that Final wrapped in ForwardRef works.
2
3from __future__ import annotations
4
5from typing import Final
6
7name: Final[str] = "final"
8
9class MyClass:
10    value: Final = 3000
11