]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.runtime/scl/SList.scl
Merged changes from feature/scl to master.
[simantics/platform.git] / bundles / org.simantics.scl.runtime / scl / SList.scl
index 6622598c744e6c48eb9126637ee93ab0dced96e3..5233955feeaf60fd47efa441663a0be6451fe13e 100644 (file)
@@ -2,9 +2,7 @@ import "Prelude"
 
 data SList a = Nil | Cons a (SList a)
 
-deriving instance (Eq a) => Eq (SList a)
 deriving instance (Ord a) => Ord (SList a)
-deriving instance (Hashable a) => Hashable (SList a)
 deriving instance (Show a) => Show (SList a)
 
 @inline