summaryrefslogblamecommitdiff
path: root/test/files/run/t6937.check
blob: 4729dc700664b73dbad2dd1dccc4696c24f6808c (plain) (tree)
1
2
3
4


                                           
                                                    

















                                                             
Type in expressions to have them evaluated.
Type :help for more information.

scala> import scala.reflect.runtime.{universe => ru}
import scala.reflect.runtime.{universe=>ru}

scala>     import scala.reflect.runtime.{currentMirror => cm}
import scala.reflect.runtime.{currentMirror=>cm}

scala>     import scala.reflect.api.{Universe => ApiUniverse}
import scala.reflect.api.{Universe=>ApiUniverse}

scala>     class A
defined class A

scala>     lazy val apiru = ru: ApiUniverse
apiru: scala.reflect.api.Universe = <lazy>

scala>     apiru.typeTag[A].in(cm)
res0: reflect.runtime.universe.TypeTag[A] = TypeTag[A]

scala>