2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0069.cs
blobb7ba89c76129174bc59293f042342bc9c7c70a2c
1 // CS0069: Event in interface cannot have add or remove accessors
2 // Line: 11
4 using System;
6 public delegate void FooHandler ();
8 interface IBar<T>
10 event FooHandler OnFoo {
11 remove { }