[mcs] Fixes codegen for pattern probing with value-type variables
[mono.git] / mcs / errors / cs0079-2.cs
1 // CS0079: The event `Foo.Event2' can only appear on the left hand side of `+=' or `-=' operator
2 // Line: 11
3
4 using System;
5
6 public class Foo {
7         EventHandler event2;
8
9         public Foo ()
10         {
11                 Event2 = null;
12         }
13
14         public event EventHandler Event2 {
15                 add { event2 += value; }
16                 remove {event2 -= value; }
17         }
18 }