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
















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

scala> class Color(val red: Int)
defined class Color

scala> 

scala> case class Red(r:Int) extends Color(r)
defined class Red

scala> 

scala> def f(c: Any) = c match { case Red(_) => () }
f: (c: Any)Unit

scala> :quit