From c0db4ed95908c0774815da22d4e810c2a5a7a266 Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Thu, 24 Feb 2022 08:03:07 +0100 Subject: prefix numbers to puzzles --- puzzles/20_enum_in_literal.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 puzzles/20_enum_in_literal.py (limited to 'puzzles/20_enum_in_literal.py') diff --git a/puzzles/20_enum_in_literal.py b/puzzles/20_enum_in_literal.py new file mode 100644 index 0000000..a743168 --- /dev/null +++ b/puzzles/20_enum_in_literal.py @@ -0,0 +1,8 @@ +import enum +from typing import Literal + +class Color(enum.Enum): + Red = enum.auto() + Blue = enum.auto() + +c: Literal[Color.Red] = Color.Blue # error -- cgit v1.2.3