[gesamt] Added ag/codea/codeb testcases
[testub10.git] / gesamt / codea_snafu_04.0
diff --git a/gesamt/codea_snafu_04.0 b/gesamt/codea_snafu_04.0
new file mode 100644 (file)
index 0000000..aeff3a0
--- /dev/null
@@ -0,0 +1,15 @@
+method pvs1(a b)
+       return (this - a) * b;
+end;
+
+method pvs2(a b)
+       return this - (a * b);
+end;
+
+method pvs3(a b)
+       return (this * a) - b;
+end;
+
+method pvs4(a b)
+       return this * (a - b);
+end;