summaryrefslogtreecommitdiff
path: root/test/files/run/t6329_repl_bug.check
blob: 11decae9bdbd63139c9e9b494441766039977abb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
scala> import scala.reflect.runtime.universe._
import scala.reflect.runtime.universe._

scala> import scala.reflect.runtime._
import scala.reflect.runtime._

scala> classManifest[List[_]]
warning: there was one deprecation warning (since 2.10.0); for details, enable `:setting -deprecation' or `:replay -deprecation'
res0: scala.reflect.ClassTag[List[_]] = scala.collection.immutable.List[<?>]

scala> scala.reflect.classTag[List[_]]
res1: scala.reflect.ClassTag[List[_]] = scala.collection.immutable.List

scala> :quit