summaryrefslogtreecommitdiff
path: root/mcs/tests/test-partial-03.cs
blob: f4b77c75fe48d5a1888a13dfb01db6950ce74be4 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Compiler options: -langversion:default

public partial class Test
{
	public readonly Foo TheFoo;

	public Test ()
	{
		this.TheFoo = new Foo ();
	}

	public partial interface IFoo
	{
		int Hello (Test foo);
	}

	public int TestFoo ()
	{
		return TheFoo.Hello (this);
	}
}

public partial class Test
{
	public partial class Foo : IFoo
	{
		int IFoo.Hello (Test test)
		{
			return 2;
		}

		public int Hello (Test test)
		{
			return 1;
		}
	}

	public int TestIFoo (IFoo foo)
	{
		return foo.Hello (this);
	}
}

class X
{
	public static int Main ()
	{
		Test test = new Test ();
		if (test.TestFoo () != 1)
			return 1;
		if (test.TestIFoo (test.TheFoo) != 2)
			return 2;
		return 0;
	}
}