You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (isDefined(sym1) && isDefined(sym2) &&!info1.matchesLoosely(info2))
94
-
// The reason for the `isDefined` condition is that we need to exclude mixin forwarders
95
-
// from the tests. For instance, in compileStdLib, compiling scala.immutable.SetProxy, line 29:
96
-
// new AbstractSet[B] with SetProxy[B] { val self = newSelf }
97
-
// This generates two forwarders, one in AbstractSet, the other in the anonymous class itself.
98
-
// Their signatures are:
99
-
// method map: [B, That]
100
-
// (f: B => B)(implicit bf: scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[B], B, That]): That override <method> <touched> in anonymous class scala.collection.AbstractSet[B] with scala.collection.immutable.SetProxy[B]{...} and
101
-
// method map: [B, That](f: B => B)(implicit bf: scala.collection.generic.CanBuildFrom[scala.collection.Set[B], B, That]): That override <method> <touched> in class AbstractSet
0 commit comments