]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/TypingError2.scl
(refs #7307) Added features field to SCL module header
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / TypingError2.scl
1 a :: Integer
2 a = a
3
4 id :: Integer -> Integer
5 id x = x
6
7 b = id a a
8 --
9 7:5-7:11: Function of arity 1 is applied with 2 parameters.