]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/TypeAlias1.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 / TypeAlias1.scl
1
2 type Id = Integer
3
4 incrementId :: Id -> Id
5 incrementId x = x
6
7 main = incrementId 3
8 --
9 3