Align libgcmonosgen vcxproj with makefile.
[mono.git] / mcs / errors / cs0179-2.cs
1 // CS0179: `Bar.OnFoo.add' cannot declare a body because it is marked extern
2 // Line: 9
3
4 using System;
5
6 public delegate void FooHandler ();
7
8 class Bar {
9         extern event FooHandler OnFoo {
10                 add { }
11                 remove { }
12         }
13 }
14