File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
package scala
2
2
3
3
import annotation .implicitNotFound
4
- import scala .collection .{GenSeq , Set }
4
+ import scala .collection .{Seq , Set }
5
5
6
6
/** A marker trait indicating that values of type `L` can be compared to values of type `R`. */
7
7
@ implicitNotFound(" Values of types ${L} and ${R} cannot be compared with == or !=" )
@@ -29,7 +29,7 @@ object Eql {
29
29
// The next three definitions can go into the companion objects of classes
30
30
// Seq, Set, and Proxy. For now they are here in order not to have to touch the
31
31
// source code of these classes
32
- given eqlSeq [T , U ](using eq : Eql [T , U ]) as Eql [GenSeq [T ], GenSeq [U ]] = derived
32
+ given eqlSeq [T , U ](using eq : Eql [T , U ]) as Eql [Seq [T ], Seq [U ]] = derived
33
33
given eqlSet [T , U ](using eq : Eql [T , U ]) as Eql [Set [T ], Set [U ]] = derived
34
34
35
35
// true asymmetry, modeling the (somewhat problematic) nature of equals on Proxies
You can’t perform that action at this time.
0 commit comments