2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-exmethod-14.cs
blobd5a6f6beb7f770b184a5c9dcea2612f28de46620
3 using System;
5 public interface IA
7 void Foo (IA self);
10 public static class C
12 public static void Foo (this IA self)
14 self.Foo<int> ();
17 public static void Bar<U> (this IA self)
19 self.Foo<U> ();
22 public static void Foo<T> (this IA self)
26 public static void Main ()