aboutsummaryrefslogblamecommitdiff
path: root/tests/pending/run/reflection-constructormirror-inner-badpath.scala
blob: 44743d137ca90b9a943f8436976cd560624c4663 (plain) (tree)



























                                                                             
                                            

                    
 
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 )
  try {
    val cls = cm.reflectClass( sym )
    cls.reflectConstructor( constructor )( 5,"test" ).asInstanceOf[R]
    println("this indicates a failure")
  } catch {
    case ex: Throwable =>
      println(ex.getMessage)
  }
 }

}
object Test extends dotty.runtime.LegacyApp{
  val foo = new Foo
  println( foo.foo )
}