]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/UnresolvedTypeInInstance.scl
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / UnresolvedTypeInInstance.scl
1 class Functor f where
2     map :: (a -> b) -> f a -> f b
3
4 data Iddd a = Idd a
5
6 instance Functor Idd where
7     map (Idd x) = x
8 --
9 6:18-6:21: Didn't find type constructor Idd.