aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/orinf.scala
blob: 30b7fd2f635365cf2c030f8ecc4bed4e87dd312d (plain) (blame)
1
2
3
4
5
6
object Test {

  def foo(lis: scala.collection.immutable.Set[Int] | scala.collection.immutable.Set[String]) = lis
  foo(Set(1))
  foo(Set(""))
}