summaryrefslogtreecommitdiffstats
path: root/src/CBot/tests/TestCBot/scenarios/bug.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/CBot/tests/TestCBot/scenarios/bug.txt')
-rw-r--r--src/CBot/tests/TestCBot/scenarios/bug.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/CBot/tests/TestCBot/scenarios/bug.txt b/src/CBot/tests/TestCBot/scenarios/bug.txt
new file mode 100644
index 0000000..4ec6eb3
--- /dev/null
+++ b/src/CBot/tests/TestCBot/scenarios/bug.txt
@@ -0,0 +1,12 @@
+public extern void object::Bug()
+{
+ point a;
+ a = position;
+ TEST();
+ float d=dist(a, position);
+}
+
+float dist(point a, point b)
+{
+ return a.x-b.x;
+}