aboutsummaryrefslogblamecommitdiff
path: root/tests/pending/run/t3376.check
blob: b8fd2843f6a2d028e1fd8b0455f14fcc64f4f1be (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















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

scala> class M[@specialized T] { override def toString = "mmm" }
defined class M

scala> val m1 = new M[Int]()
m1: M[Int] = mmm

scala> val m2 = new M[Float]()
m2: M[Float] = mmm

scala> val m3 = new M[String]()
m3: M[String] = mmm

scala> :quit