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

test-390.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca797208cc1e8b9a74c41ebcadb6b91c45fb9e35 (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
class C
{
	class O : M
	{
		public override void Foo ()
		{
		}	
	}
	
	class N
	{
		public virtual void Foo ()
		{
		}
	}
	
	class M : N
	{
	}
	
	public static void Main ()
	{
	}
}