2009-07-20 Geoff Norton <gnorton@novell.com>
[mono-project.git] / mcs / errors / cs0657-22.cs
blobb2cb0eacfa13cc549bce26dee3be3fb08f25809e
1 // CS0657: `field' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `event, method'
2 // Line: 8
4 using System;
6 abstract class X
8 [field:NonSerialized]
9 public abstract event EventHandler XEvent;