cleol
[mcs.git] / tests / gtest-424.cs
blob97645dd02bce383997a89412742f19243c160f54
1 using System;
2 using System.Collections.Generic;
4 public class A { }
6 public class B : A { }
8 public class Test
10 public static void Block (params A[] expressions)
12 throw new ApplicationException ();
15 public static void Block (IEnumerable<B> variables, params A[] expressions)
19 public static int Main ()
21 A e = new A ();
22 Block (new B[] { }, e);
23 return 0;