]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/TransformationOrder.scl
Merged changes from feature/scl to master.
[simantics/platform.git] / bundles / org.simantics.scl.compiler / tests / org / simantics / scl / compiler / tests / scl / TransformationOrder.scl
diff --git a/bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/TransformationOrder.scl b/bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/TransformationOrder.scl
deleted file mode 100644 (file)
index 36c08c7..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-import "StandardLibrary"
-
-rule A where
-    @to
-    Execute (print "A")
-
-rule B where
-    @to
-    Execute (print "B")
-    
-rule C where
-    @to
-    Execute (print "C")
-    
-main = transformation OneShotForward where
---
-()