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

test-707.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2f2df7b6a1f96a9864e021c47176a2e4c63aa977 (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
using System;

class Tzap
{
	protected class Baz : Tzap.Bar
	{

		public void Gazonk ()
		{
			this.Foo ();
		}

		public static void Main ()
		{
		}
	}

	protected abstract class Bar
	{
		protected virtual void Foo ()
		{
		}
	}
}