summaryrefslogblamecommitdiff
path: root/test/files/run/reflection-constructormirror-inner-good.scala
blob: c09da5b300da6dbcddfacd0f6691d30aaa93cab6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                               

                                                                             









                                                                   
import scala.reflect.runtime.universe._
import scala.reflect.ClassTag

class Foo{
  case class R(
    sales : Int,
    name : String
  )

 def foo = {
  val expectedType = implicitly[TypeTag[R]]
  val classTag = implicitly[ClassTag[R]]
  val cl = classTag.runtimeClass.getClassLoader
  val cm = runtimeMirror(cl)
  val constructor = expectedType.tpe.member( termNames.CONSTRUCTOR ).asMethod
  val sig = constructor.info
  val sym = cm.classSymbol( classTag.runtimeClass )
  val cls = cm.reflect( this ).reflectClass( sym )
  cls.reflectConstructor( constructor )( 5,"test" ).asInstanceOf[R]
 }

}
object Test extends App{
  val foo = new Foo
  println( foo.foo )
}