]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/GuardedExpressionBug.scl
Merge commit 'e87f096'
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / GuardedExpressionBug.scl
1 tableIndex :: Double -> Double
2 tableIndex x
3     | True = x
4   where
5     f _ = x
6
7 main = "Foo"
8 --
9 Foo