]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/scl/BooleanId.scl
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / tests / scl / BooleanId.scl
1 @private
2 @inline
3 not True = False
4 not False = True
5
6 @private
7 @inline
8 id x = not (not x)
9
10 main = id True
11 --
12 true