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