summaryrefslogtreecommitdiff
path: root/test/files/run/t5256d.check
blob: 7924c15c5c7221617d5d73b83847fd73dba8c0af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Type in expressions to have them evaluated.
Type :help for more information.

scala> 

scala> import scala.reflect.mirror._
import scala.reflect.mirror._

scala> class A
defined class A

scala> val c = classToType(classOf[A])
c: reflect.mirror.Type = A

scala> println(c.typeSymbol == classToSymbol(classOf[A]))
true

scala> 

scala>