summaryrefslogtreecommitdiff
path: root/test/files/run/t6908.scala
blob: a641de96b995e3ca2471b7dc3c745e56d3b219e8 (plain) (blame)
1
2
3
4
5
6
object Test {
  def main(args: Array[String]) {
    val set = collection.mutable.Set("1", null, "3").par
    assert( set exists (_ eq null) )
  }
}