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

scala> 

scala> {
  import scala.reflect.runtime.universe._
  val x = "2"
  val tt = implicitly[TypeTag[x.type]]
  println(tt)
}
<console>:11: free term: Ident(newTermName("x")) defined by res0  in <console>:10:21
                val tt = implicitly[TypeTag[x.type]]
                                   ^
TypeTag[x.type]

scala> 

scala>