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

test-20.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0093632dad76e61815bb612978cffe9c445641a4 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
//
// This generates a warning
//
using System;

class A {
	public int a;

	public void X ()
	{
		a = 1;
	}
}

class B : A {
	void X ()
	{
		a = 2;
	}

	public void TestB ()
	{
		X ();
	}
}

class Ax {
	public int a;

	public virtual void A ()
	{
		a = 1;
	}

	public virtual void B ()
	{
		a = 3;
	}
}

class Bx : Ax {
	public override void A ()
	{
		a = 2;
	}
	public new void B ()
	{
		a = 4;
	}
}
class Test {
	public static int Main ()
	{
		B b = new B ();

		b.TestB ();
		if (b.a != 2)
			return 1;

		Bx bx = new Bx ();
		bx.A ();
		if (b.a != 2)
			return 2;
		bx.B ();
		Console.WriteLine ("a="+bx.a);
		if (bx.a != 4)
			return 3;
		return 0;
	}
}