2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-exmethod-33.cs
blobc667df82826708a63f0072e2c57034b5c3f9030d
1 public class Prop
5 public interface I
7 void Foo (int[] i, bool b);
10 internal static class HelperExtensions
12 public static void Foo (this I from, I to)
17 public class C
19 public I Prop {
20 get { return null; }
23 public int[] Loc {
24 get { return null; }
27 void Test ()
29 Prop.Foo (null);
32 public static void Main ()