Aladdin - Scala Bugtracking
[#963] project: documentation priority: low category: bug
submitter assigned to status date submitted
Nikolay Stephane fixed 2007-02-23 15:25:56.0
subject [contrib #349] compound types not linked correctly
code
See def  keySet  : java.lang.Object with scala.collection.Set[A] in scala.collection.map:
http://www.scala-lang.org/docu/files/api/scala/collection/Map.html

what happened
The link of the compound type is not pointing to correct location.
what expected The link should be divided into as many parts as there are classes / traits, and linked to a correct class/trait respectively.
[back to overview]
Changes of this bug report
Nikolay  edited on  2007-02-23 15:26:23.0
contribution #349
Stephane  edited on  2007-02-27 19:04:18.0
For exmple:
package test
trait Foo {
  def foo: Int
}
object Main {
  def test = new Foo {
    def foo = 0
  }
}
Stephane  edited on  2007-02-27 19:41:18.0
fixed in rev 10131