This page is no longer maintained — Please continue to the home page at www.scala-lang.org

++ on Set[Any] doesn't compile

2 replies
Henri
Joined: 2010-12-04,
User offline. Last seen 1 year 48 weeks ago.
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


Henri
Joined: 2010-12-04,
User offline. Last seen 1 year 48 weeks ago.
Re: ++ on Set[Any] doesn't compile

I forgot to add that I'm using Scala 2.8.1

Henri

Sonnenschein
Joined: 2010-10-30,
User offline. Last seen 1 year 20 weeks ago.
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

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland