diff tests/mini/funcs.d @ 341:1bb99290e03a trunk

[svn r362] Started merging the old 'test' dir as well as the newer 'tangotests' dir into 'tests/mini' and 'tests/minicomplex'.
author lindquist
date Sun, 13 Jul 2008 02:51:19 +0200
parents test/funcs.d@d9d5d59873d8
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/mini/funcs.d	Sun Jul 13 02:51:19 2008 +0200
@@ -0,0 +1,50 @@
+extern(C) int printf(char*, ...);
+
+void main()
+{
+    printf("Testing functions\n");
+    int i = 5;
+    assert(a(i) == 110);
+    assert(i == 11);
+
+    S s;
+    s.i = 5;
+    d(s);
+    assert(s.i == 5);
+    e(s);
+    assert(s.i == 6);
+
+    printf("  SUCCESS\n");
+}
+
+int a(ref int i)
+{
+    i*=2;
+    return b(i);
+}
+
+int b(ref int i)
+{
+    i++;
+    return c(i);
+}
+
+int c(int i)
+{
+    return i*10;
+}
+
+struct S
+{
+    int i;
+}
+
+void d(S s)
+{
+    s.i++;
+}
+
+void e(ref S s)
+{
+    s.i++;
+}