]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/DifferentBranchTypes.scl
Merged changes from feature/scl to master.
[simantics/platform.git] / bundles / org.simantics.scl.compiler / tests / org / simantics / scl / compiler / tests / scl / DifferentBranchTypes.scl
diff --git a/bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/DifferentBranchTypes.scl b/bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/DifferentBranchTypes.scl
deleted file mode 100644 (file)
index 2a0925f..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-import "Prelude"
-
-foo n = n
-  where
-    if n > 0
-    then 1
-    else "asd"
-
-bar n = n
-  where
-    do 
-       c = n+1
-       if c > 0
-       then 1
-       else "asd"
-    
-main = foo 3 + bar 3
---
-6
\ No newline at end of file