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

test-553.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4bfe5b437c5ce82eb1d1f2d2f51ece7e4aa25802 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class A
{
	public virtual void Add (object o)
	{
	}
}

class B : A
{
	public virtual bool Add (object o)
	{
		return false;
	}
	
	public static void Main () {}
}