aboutsummaryrefslogblamecommitdiff
path: root/tests/run/t6908.scala
blob: da37cb0bbde31941dc4e193209b487feb71cef91 (plain) (tree)
1
2
3
4
5
6





                                                        
object Test {
  def main(args: Array[String]): Unit = {
    val set = collection.mutable.Set("1", null, "3").par
    assert( set exists (_ eq null) )
  }
}