-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Superconstructor arguments in the presence of an implicit parameter list crash the compiler #5384
Comments
Imported From: https://issues.scala-lang.org/browse/SI-5384?orig=1 |
Robin Green (greenrd) said:
|
Robin Green (greenrd) said:
|
@paulp said: class A(x: String, y: Int)(implicit o: String)
class B(implicit o: String) extends A(y = 5, x = "a")
// Note that these don't crash:
// class B(implicit o: String) extends A(y = 5, x = "a")(o)
// class B(implicit o: String) extends A(x = "a", y = 5) |
@lrytz said: |
Reduced by Paul:
Original bug report:
Crash:
The text was updated successfully, but these errors were encountered: