New Testcases + New Script
[testub10.git] / codeb / skinner33_04.call
diff --git a/codeb/skinner33_04.call b/codeb/skinner33_04.call
new file mode 100644 (file)
index 0000000..84677a8
--- /dev/null
@@ -0,0 +1,9 @@
+
+long foo(long*, long);
+
+long muh[] = {10, 3};
+long kuh[] = {2,6};
+
+
+RET(foo(muh, 10) == 1 && muh[1] == 3 && muh[0] == 3 && foo(kuh, 50) == 14 && kuh[0] == 6 && kuh[1] == 6 ); 
+