[w32file] Remove dead code
[mono.git] / mcs / errors / cs0079-5.cs
1 // CS0079: The event `C.ev' can only appear on the left hand side of `+=' or `-=' operator
2 // Line: 14
3
4 class C
5 {
6         static event System.EventHandler ev
7         {
8                 add { }
9                 remove { }
10         }
11
12         static void Main ()
13         {
14                 ev *= null;
15         }
16 }