]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/TypeAlias1.scl
TransferableGraphUtils.getObjects2 for fixing not-found handling
[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