# Tests that a cls token gets interpreted as a Token.Name.Builtin.Pseudo

---input---
class TestClass():
    @classmethod
    def hello(cls):
        pass

---tokens---
'class'       Keyword
' '           Text
'TestClass'   Name.Class
'('           Punctuation
')'           Punctuation
':'           Punctuation
'\n'          Text

'    '        Text
'@classmethod' Name.Decorator
'\n'          Text

'    '        Text
'def'         Keyword
' '           Text
'hello'       Name.Function
'('           Punctuation
'cls'         Name.Builtin.Pseudo
')'           Punctuation
':'           Punctuation
'\n'          Text

'        '    Text
'pass'        Keyword
'\n'          Text
