``` from enum import IntEnum Color = IntEnum('Color', 'red green blue') Color['green'] ``` ...yields: ``` test.py:3: error: Value of type "Type[Color]" is not indexable ``` This example is more or less [straight out of the enum docs](http://cpython-test-docs.readthedocs.io/en/latest/library/enum.html#programmatic-access-to-enumeration-members-and-their-attributes) -- my expectation is that it should not be a type error. Mypy version 025e3decfaa95f42c721c4662cdf2dd748db06a3
...yields:
This example is more or less straight out of the enum docs -- my expectation is that it should not be a type error.
Mypy version 025e3de