dlr bug
[mcs.git] / tests / test-651.cs
blobf7eff01c81ccab8eb15df561e1a196f55ef0c0e9
1 using System.Collections;
3 class Foo
5 void Open (IList a)
9 void Open (out ArrayList a)
11 a = null;
12 Open ((IList) a);
13 Open (a);
16 public static void Main ()