2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-exmethod-07.cs
blobaa9f33cd21ed6c67de9d6ad98cc90042bfdc001d
3 using System.Collections.Generic;
5 interface IA
9 interface IB : IA
13 static class E
15 internal static void ToReadOnly<T>(this IEnumerable<T> source)
19 internal static void To (this IA i)
24 class C
26 public static void Main ()
30 public static void Test (IEnumerable<bool> bindings)
32 bindings.ToReadOnly();
34 IB ib = null;
35 ib.To ();