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

test-29.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c41e432f1f8fd9980eb4776118cc31bfde0c285 (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
//
// Versioning, should choose Derived.Add (1)
//
using System;

class Base {
	public int val;
	
	public void Add (int x)
	{
		Console.WriteLine ("Incorrect method called");
 
		val = 1;
	}
}

class Derived : Base {
	public void Add (double x)
	{
		Console.WriteLine ("Calling the derived class with double! Excellent!");
		val = 2;
	}
}

class Demo {

	public static int Main ()
	{
		Derived d = new Derived ();

		d.Add (1);
		if (d.val == 1)
			return 1;

		if (d.val == 2)
			return 0;
		return 2;

	}
}