Skip to content
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

ExprType paths must not be considered stable #367

Closed
samuelgruetter opened this issue Feb 17, 2015 · 1 comment
Closed

ExprType paths must not be considered stable #367

samuelgruetter opened this issue Feb 17, 2015 · 1 comment

Comments

@samuelgruetter
Copy link
Contributor

dotty considers that p of type => P is stable, so that p.T is a valid type, but that's unsound:

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.

@odersky
Copy link
Contributor

odersky commented Feb 12, 2016

Fixed by way of #1051.

@odersky odersky closed this as completed Feb 12, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants