input ```python class Foo: pass reveal_type(Foo.__name__) ``` expected output: ``` foo.py:4: error: Revealed type is "Literal['Foo']" ``` actual output: ``` foo.py:4: error: Revealed type is 'builtins.str' ```