]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/NonassociativeOperator.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 / NonassociativeOperator.scl
1 infix 3 (+)
2
3 a + b = a
4
5 threeTimes x = x + x + x
6 --
7 5:22-5:23: Operator + is not associative.