error messages review
[mono.git] / mcs / errors / cs0657-19.cs
1 // cs0657-19.cs: `field' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `event, method'
2 // Line : 7
3
4 using System;
5
6 interface X {
7   [field:NonSerialized]
8   event EventHandler XEvent;
9 }