Open
Description
Compiler version
v3.3.1
v3.4.0-RC1
Minimized code
import language.implicitConversions
class Foo[+T]
implicit inline def conv[T, R](from: R): Foo[T] =
compiletime.summonInline[T =:= Int]
new Foo[T]
val f: Foo[Int] = "o" //error
Output
Cannot prove that Nothing =:= Int.
Expectation
No error.