summaryrefslogtreecommitdiffstats
path: root/src/CBot/tests/scenarios/postinc.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/CBot/tests/scenarios/postinc.txt')
-rw-r--r--src/CBot/tests/scenarios/postinc.txt7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/CBot/tests/scenarios/postinc.txt b/src/CBot/tests/scenarios/postinc.txt
deleted file mode 100644
index cdf6ab5..0000000
--- a/src/CBot/tests/scenarios/postinc.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-extern public void X()
-{
- point A [ ] ;
- A[5] = new point (2,3);
- int val = A[5].x++ + --A[5].y;
- show ( A, val );
-}