linux-packaging-mono/mcs/tests/gtest-exmethod-33.cs
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

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 ()
{
}
}