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 11package scala
22
33import annotation .implicitNotFound
4- import scala .collection .{GenSeq , Set }
4+ import scala .collection .{Seq , Set }
55
66/** A marker trait indicating that values of type `L` can be compared to values of type `R`. */
77@ implicitNotFound(" Values of types ${L} and ${R} cannot be compared with == or !=" )
@@ -29,7 +29,7 @@ object Eql {
2929 // The next three definitions can go into the companion objects of classes
3030 // Seq, Set, and Proxy. For now they are here in order not to have to touch the
3131 // 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
3333 given eqlSet [T , U ](using eq : Eql [T , U ]) as Eql [Set [T ], Set [U ]] = derived
3434
3535 // true asymmetry, modeling the (somewhat problematic) nature of equals on Proxies
You can’t perform that action at this time.
0 commit comments