blob: aa9f33cd21ed6c67de9d6ad98cc90042bfdc001d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
using System.Collections.Generic;
interface IA
{
}
interface IB : IA
{
}
static class E
{
internal static void ToReadOnly<T>(this IEnumerable<T> source)
{
}
internal static void To (this IA i)
{
}
}
class C
{
public static void Main ()
{
}
public static void Test (IEnumerable<bool> bindings)
{
bindings.ToReadOnly();
IB ib = null;
ib.To ();
}
}
|