summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0533-4.cs
blob: 4d2eee8243cb0eb8af6a7d85d7725cef92bfe722 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0533: `B.MyEvent' hides inherited abstract member `A.MyEvent'
// Line: 11

using System;

abstract class A {
	public abstract event EventHandler MyEvent;
}

class B : A {
	public event EventHandler MyEvent;
}