You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These error messages are for aux ctors needing non-implicit params. I'm testing the error messages with this code
```
class Square(val len: Int) {
// typical cases:
// (1) this() parens are forgotten, (2) argument set as implicit
def this(implicit width: Double) = this(0)
def this = { this(4) }
}
class MyList(val s: String) {
def this
```
0 commit comments