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-12-28 18:21:34 +0300
committerRavi Pratap M <ravi@mono-cvs.ximian.com>2001-12-28 18:21:34 +0300
commit912389db8b516051225303528326ed1ba3c727d7 (patch)
tree33e1291c0471fd100837e068b9dc3c69d9a43901 /mcs/tests/test-34.cs
parent5e666d525a0fbebf8ffec7b431e0badf0468b4f2 (diff)
2001-12-28 Ravi Pratap <ravi@ximian.com>
* test-34.cs : UPdate to exercise the new overload resolution code. svn path=/trunk/mcs/; revision=1739
Diffstat (limited to 'mcs/tests/test-34.cs')
-rw-r--r--mcs/tests/test-34.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/mcs/tests/test-34.cs b/mcs/tests/test-34.cs
index 87fde99b6e8..06f8518a201 100644
--- a/mcs/tests/test-34.cs
+++ b/mcs/tests/test-34.cs
@@ -35,6 +35,8 @@ public class Blah {
int i = 1;
int j = 2;
+ int [] arr = new int [2] { 0, 1 };
+
Foo (i, j);
if (got != 3)
return 1;
@@ -45,6 +47,9 @@ public class Blah {
if (Bar (i, j, 5, 4, 3, 3, 2) != 19)
return 4;
+
+ //if (Bar (1, arr) != 1)
+ // return 5;
if (got != 2)
return 3;