Closed
Description
Compiler version
3.3.0
Minimized example
class Number(n: Int)
val x = Number(3)
Output
2 |val x = Number(3)
| ^^^^^^
| Reference to constructor proxy for class Number
| shadows outer reference to object Number in package java.lang
Expectation
java.lang.Number
cannot possibly be applied, so one could avoid the error- The error message could be better and could contain some suggestions how to fix the problem.