## Compiler version 3.3.1-RC5 and 3.3.1-RC6 ## Minimized code dummy implementation of [assertThrows](https://github.com/scalatest/scalatest/blob/main/dotty/core/src/main/scala/org/scalatest/Assertions.scala#L818) ```Scala inline def assertThrows[T <: AnyRef](f: => Any)(implicit classTag: scala.reflect.ClassTag[T]) = f assertThrows(1) ``` ## Output ```scala No ClassTag available for T | | where: T is a type variable with constraint <: AnyRef ``` ## Expectation Compiles successfully as was the case prior to RC5. I thought that the offending commit was this [merged PR](https://github.com/lampepfl/dotty/pull/18286) but apparently it's unrelated? At any rate, a commit in RC5 has broken ScalaTest.