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

test-754.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 90db4415ad7927927f3cf62f16764c9ae2a7cce5 (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
namespace Bug
{
	public delegate void D ();

	public abstract class A
	{
		public abstract event D E;
	}

	public sealed class B : A
	{
		public override event D E
		{
			add { }
			remove { }
		}
	}

	class M
	{
		public static void Main ()
		{
		}
	}
}