- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
++ on Set[Any] doesn't compile
Sat, 2010-12-04, 18:12
Hi. I receive a compile error when I try to do
this:
val s1 = Set[Any](1, 2, 3)
val s2 = Set[Any]("a", "b")
s1 ++ s2
The error I receive is:
error: ambiguous reference to overloaded definition,
both method ++ in trait Addable of type (xs: scala.collection.TraversableOnce[Any])scala.collection.immutable.Set[Any]
and method ++ in trait TraversableLike of type [B >: Any,That](that: scala.collection.TraversableOnce[B])(implicit bf: scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[Any],B,That])That
match argument types (scala.collection.immutable.Set[Any])
s1 ++ s2
^ What am I doing wrong? I must admit the error message is a bit difficult to understand...
Henri
error: ambiguous reference to overloaded definition,
both method ++ in trait Addable of type (xs: scala.collection.TraversableOnce[Any])scala.collection.immutable.Set[Any]
and method ++ in trait TraversableLike of type [B >: Any,That](that: scala.collection.TraversableOnce[B])(implicit bf: scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[Any],B,That])That
match argument types (scala.collection.immutable.Set[Any])
s1 ++ s2
^ What am I doing wrong? I must admit the error message is a bit difficult to understand...
Henri
Sat, 2010-12-04, 20:17
#2
Re: ++ on Set[Any] doesn't compile
I think this is a compiler issue. You may find similar issues in trac
(https://lampsvn.epfl.ch/trac/scala).
By the way
Set(1,2) ++ Set("A")
works as expected.
Greetings
Peter
I forgot to add that I'm using Scala 2.8.1
Henri