a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
36 lines
357 B
C#
36 lines
357 B
C#
public class Prop
|
|
{
|
|
}
|
|
|
|
public interface I
|
|
{
|
|
void Foo (int[] i, bool b);
|
|
}
|
|
|
|
internal static class HelperExtensions
|
|
{
|
|
public static void Foo (this I from, I to)
|
|
{
|
|
}
|
|
}
|
|
|
|
public class C
|
|
{
|
|
public I Prop {
|
|
get { return null; }
|
|
}
|
|
|
|
public int[] Loc {
|
|
get { return null; }
|
|
}
|
|
|
|
void Test ()
|
|
{
|
|
Prop.Foo (null);
|
|
}
|
|
|
|
public static void Main ()
|
|
{
|
|
}
|
|
}
|