We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
dotty considers that p of type => P is stable, so that p.T is a valid type, but that's unsound:
p
=> P
p.T
object test { trait Consumer { type T def eat(t: T): Unit val defaultValue: T } class IntConsumer extends Consumer { type T = Int def eat(i: Int): Unit = println(i*i) val defaultValue = 0 } class StringConsumer extends Consumer { type T = String def eat(s: String): Unit = println(s.length) val defaultValue = "" } var counter: Int = 0 def unstableConsumer: Consumer = { counter += 1 if (counter % 2 == 0) new IntConsumer else new StringConsumer } def feed(c: => Consumer): Unit = { val v: c.T = c.defaultValue // v: String = "" c.eat(v) // c: IntConsumer, will crash } feed(unstableConsumer) }
Scala 2 rejects it:
error: stable identifier required, but c found. val v: c.T = c.defaultValue // v: String = "" ^
but dotty accepts it.
The text was updated successfully, but these errors were encountered:
Fixed by way of #1051.
Sorry, something went wrong.
No branches or pull requests
dotty considers that
p
of type=> P
is stable, so thatp.T
is a valid type, but that's unsound:Scala 2 rejects it:
but dotty accepts it.
The text was updated successfully, but these errors were encountered: