## Compiler version 3.1.3-RC2 ## Minimized code ```Scala case class $[A](value: A) def f(x: Int): Unit = {} f(T(3)) ``` ## Output ```scala Found: [Int] Required: Int ``` Notice the missing `$`. ## Expectation ```scala Found: $[Int] Required: Int ```