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

Disallow super call in value class #6483

Closed
scabug opened this issue Oct 7, 2012 · 2 comments
Closed

Disallow super call in value class #6483

scabug opened this issue Oct 7, 2012 · 2 comments
Assignees
Milestone

Comments

@scabug
Copy link

scabug commented Oct 7, 2012

scala> trait T extends Any { def foo = 1}; class C(val a: Any) extends AnyVal with T { override def foo = super[T].foo }
exception when typing $this.super[T].foo()/class scala.reflect.internal.Trees$Apply
T does not name a parent class of <none> in file <console>
scala.reflect.internal.Types$TypeError: T does not name a parent class of <none>
...
== Enclosing template or block ==

Apply( // def foo(): Int in trait T
  $this.super[T]."foo" // def foo(): Int in trait T, tree.tpe=()Int
  Nil
)

== Expanded type of tree ==

ErasedValueType(C)
@scabug
Copy link
Author

scabug commented Oct 7, 2012

Imported From: https://issues.scala-lang.org/browse/SI-6483?orig=1
Reporter: @retronym
Affected Versions: 2.10.0
Other Milestones: 2.10.0

@scabug
Copy link
Author

scabug commented Oct 7, 2012

@retronym said:
scala/scala#1471

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

2 participants