================================================================================
Infix types in match type cases
:skip
================================================================================

// https://github.com/tree-sitter/tree-sitter-scala/issues/360
type F[T] = T match {
  case t *: EmptyTuple => t
  case t *: rest => t 
}

--------------------------------------------------------------------------------
