PyFile:PatternMatchingRecoveryStarPatternFollowedByQualifiedReference.py
  PyMatchStatement
    PsiElement(Py:MATCH_KEYWORD)('match')
    PsiWhiteSpace(' ')
    PyReferenceExpression: x
      PsiElement(Py:IDENTIFIER)('x')
    PsiElement(Py:COLON)(':')
    PsiWhiteSpace('\n    ')
    PyCaseClause
      PsiElement(Py:CASE_KEYWORD)('case')
      PsiWhiteSpace(' ')
      PySequencePattern
        PsiElement(Py:LBRACKET)('[')
        PySingleStarPattern
          PsiElement(Py:MULT)('*')
          PsiErrorElement:Name or '_' expected
            <empty list>
        PsiErrorElement:Unexpected tokens
          PsiElement(Py:IDENTIFIER)('foo')
          PsiElement(Py:DOT)('.')
          PsiElement(Py:IDENTIFIER)('bar')
          PsiElement(Py:DOT)('.')
          PsiElement(Py:IDENTIFIER)('baz')
        PsiElement(Py:RBRACKET)(']')
      PsiElement(Py:COLON)(':')
      PsiWhiteSpace('\n        ')
      PyStatementList
        PyPassStatement
          PsiElement(Py:PASS_KEYWORD)('pass')