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

Wrong reification of type parameter in reify_newimpl_30 scala test #7082

Open
scabug opened this issue Feb 5, 2013 · 1 comment
Open

Wrong reification of type parameter in reify_newimpl_30 scala test #7082

scabug opened this issue Feb 5, 2013 · 1 comment
Labels
Milestone

Comments

@scabug
Copy link

scabug commented Feb 5, 2013

// test/files/run/reify_newimpl_30.scala
import scala.reflect.runtime.universe._
import scala.tools.reflect.ToolBox
import scala.tools.reflect.Eval

object Test extends App {
  {
    class C {
      type T = Int
      val code = reify {
        List[C#T](2)
      }
      println(code.eval)
    }

    new C
  }
}

In the scala test above, type of List[C#T] is substituted with Int and reified as staticClass(Int), but should be SelectFromTypeTree(C, T)

@scabug
Copy link
Author

scabug commented Feb 5, 2013

Imported From: https://issues.scala-lang.org/browse/SI-7082?orig=1
Reporter: Dmitry Bushev (4e6)
Affected Versions: 2.10.0, 2.10.1-RC1, 2.10.1

@scabug scabug added the macros label Apr 7, 2017
@scabug scabug added this to the Backlog milestone Apr 7, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants