Closed
Description
Compiler version
3.0.0
Minimized code
val x: Int = "not an int"
Output
[error] 9 |val x: Int = "not an int"
[error] | ^^^^^^^^^^^^
[error] | Found: |("not an int" : String)
[error] | Required: |Int
Expectation
output
[error] 9 |val x: Int = "not an int"
[error] | ^^^^^^^^^^^^
[error] | Found: ("not an int" : String)
[error] | Required: Int