Merge pull request #4615 from alexanderkyte/string_error_handling
[mono.git] / mcs / errors / cs0115-6.cs
1 // CS0115: `B.MyMissingSuperclassEvent' is marked as an override but no suitable event found to override
2 // Line: 10
3
4 using System;
5
6 class A {
7 }
8
9 class B : A {
10         public override event EventHandler MyMissingSuperclassEvent;
11 }