Files
linux-packaging-mono/mcs/errors/cs1609.cs

13 lines
165 B
C#
Raw Normal View History

// CS1609: Modifiers cannot be placed on event accessor declarations
// Line: 9
delegate int d();
class C
{
public event d E {
private add {}
remove {}
}
}