cleol
[mcs.git] / errors / cs1609.cs
blob58a219a5c37d9a9e5bd5cdb08345eab4253444ac
1 // CS1609: Modifiers cannot be placed on event accessor declarations
2 // Line: 9
4 delegate int d();
6 class C
8 public event d E {
9 private add {}
10 remove {}