Minimization of `tests/run/t5328.scala` ```scala // Test.scala def test = Vector(1).view.updated(0,2) ``` ``` sbt> set ThisBuild/Build.scala2Library := Build.Scala2LibraryCCTasty sbt> scala3-bootstrapped/scalac Test.scala ``` ```scala 1 |def test = Vector(1).view.updated(0,2) | ^^^^^^^^^^^^^^^^^^^^^^ | value updated is not a member of scala.collection.IndexedSeqView[Int] ``` _Originally posted by @nicolasstucki in https://github.com/lampepfl/dotty/issues/19652#issuecomment-1935559226_