## minimized code ```Scala val head1 +: _ = List(1).view val _: Int = head1 ``` When compiling with Dotty 0.21.0-RC1, it reports the following error: ``` Found: (head1 : Any) Required: Int ``` ## expectation It should compile without error as Scala 2.13 did.