[ci] Only build the additional profiles on one arch instead of everywhere
[mono-project.git] / mcs / errors / cs0065.cs
blobef442674949278e6be06a73d72948b478aa701f0
1 // CS0065: `EventClass.handler': event property must have both add and remove accessors
2 // Line : 9
4 using System;
6 public delegate void EventHandler (object sender, EventArgs e);
8 public class EventClass {
9 event EventHandler handler { add; }
12 public class MainClass {
13 public static void Main () {}