2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0179-2.cs
blob17d74a7ea74c390867497d09ce0720b8b7486060
1 // CS0179: `Bar.OnFoo.add' cannot declare a body because it is marked extern
2 // Line: 9
4 using System;
6 public delegate void FooHandler ();
8 class Bar {
9 extern event FooHandler OnFoo {
10 add { }
11 remove { }