Mixing test case. No review.

git-svn-id: http://lampsvn.epfl.ch/svn-repos/scala/scala/trunk@21076 5e8d7ff9-d8ef-0310-90f0-a4852d11357a
This commit is contained in:
odersky 2010-03-05 15:32:24 +00:00
parent e647b9b99f
commit ea78c6a6eb
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
package test
object A {
println(("a" match {
case "a" => 1
case _ => "a"
}).asInstanceOf[Object])
}