Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRavi Pratap M <ravi@mono-cvs.ximian.com>2001-10-31 17:53:53 +0300
committerRavi Pratap M <ravi@mono-cvs.ximian.com>2001-10-31 17:53:53 +0300
commit11f07599e9e0294087b143d20d90d338ea0055f3 (patch)
treea7e241e3e106f25028eb1b4952070ee6ce45dbbd /mcs/tests/test-34.cs
parent563a47271ac2f47eb846e86959a1f3d3d700e3b7 (diff)
2001-10-31 Ravi Pratap <ravi@ximian.com>
* test-34.cs : Add svn path=/trunk/mcs/; revision=1233
Diffstat (limited to 'mcs/tests/test-34.cs')
-rw-r--r--mcs/tests/test-34.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/mcs/tests/test-34.cs b/mcs/tests/test-34.cs
new file mode 100644
index 00000000000..f863195cd9b
--- /dev/null
+++ b/mcs/tests/test-34.cs
@@ -0,0 +1,23 @@
+using System;
+
+public class Blah {
+
+ public static void Foo (ref int i, ref int j)
+ {
+ }
+
+ public static void Foo (int i, int j)
+ {
+ }
+
+ public static int Main ()
+ {
+ int i = 1;
+ int j = 2;
+
+ Foo (i, j);
+ Foo (ref i, ref j);
+
+ return 0;
+ }
+}