]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/GuardedExpressionBug.scl
Remove unused import in DeleteHandler
[simantics/platform.git] / bundles / org.simantics.scl.compiler / tests / 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