]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/Forall1.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 / Forall1.scl
1      
2 id :: forall a. a -> a
3    // ^ not usually needed, but we test just that this is possible
4 id x = x
5
6 main = id (3 :: Integer)
7 --
8 3