Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-partial-10.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ba8a5c32c46553a31475e0f17419218da362efe6 (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
56
// Compiler options: -langversion:default

using System;

namespace Test2
{
	public interface Base
	{ }

	public partial class Foo : Base
	{
		public static int f = 10;
	}

	public partial class Foo : Base
	{
		public static int f2 = 9;		
	}
}

namespace Test3
{
	public interface Base
	{ }

	public partial struct Foo : Base
	{
		public static int f = 10;
	}

	public partial struct Foo : Base
	{
		public static int f2 = 9;
	}
}

class X
{
	public static int Main ()
	{
		if (Test2.Foo.f != 10)
			return 1;
		
		if (Test2.Foo.f2 != 9)
			return 1;
		
		if (Test3.Foo.f != 10)
			return 1;

		if (Test3.Foo.f2 != 9)
			return 1;
		
		Console.WriteLine ("OK");
		return 0;
	}
}