]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/Transformation5.scl
Merged changes from feature/scl to master.
[simantics/platform.git] / bundles / org.simantics.scl.compiler / tests / org / simantics / scl / compiler / tests / scl / Transformation5.scl
diff --git a/bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/Transformation5.scl b/bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/Transformation5.scl
deleted file mode 100644 (file)
index e041430..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-import "StandardLibrary"
-
-Foo ?x :-
-    @enforce 1
-    Execute (?x := (1 :: Integer))
-
-Bar ?x :-
-    @enforce 2
-    Execute (if getRef ?x == 1 then () else fail "Test failed.")
-    
-rule DoIt where
-    @from
-    ?x = ref (0 :: Integer)
-    
-    @to
-    Bar ?x
-    Foo ?x
-
-main :: ()
-main = transformation OneShotForward where
---
-()