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:
authorMarek Safar <marek.safar@gmail.com>2008-06-27 23:54:09 +0400
committerMarek Safar <marek.safar@gmail.com>2008-06-27 23:54:09 +0400
commitd46dedc78c298819ca486a943e4e11c93ac291e1 (patch)
tree6eb1a33ed6d51c31bdaf2e2810ea0c7ed5e2dd4e /mcs/tests/test-651.cs
parentc1a91eddb37197d81b7494238c3b6e2852fe3bef (diff)
2008-06-27 Marek Safar <marek.safar@gmail.com>
A test for bug #401020 svn path=/trunk/mcs/; revision=106767
Diffstat (limited to 'mcs/tests/test-651.cs')
-rwxr-xr-xmcs/tests/test-651.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/mcs/tests/test-651.cs b/mcs/tests/test-651.cs
new file mode 100755
index 00000000000..f7eff01c81c
--- /dev/null
+++ b/mcs/tests/test-651.cs
@@ -0,0 +1,19 @@
+using System.Collections;
+
+class Foo
+{
+ void Open (IList a)
+ {
+ }
+
+ void Open (out ArrayList a)
+ {
+ a = null;
+ Open ((IList) a);
+ Open (a);
+ }
+
+ public static void Main ()
+ {
+ }
+}