The error message "Tuple index must be an integer literal" is produced by the following code: ``` import enum class X(enum.IntEnum): a = 0 b = 1 t = ('a', 'b') print(t[X.a]) ```