summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0657-19.cs
blob: e9bb8e631b245810cce9d7ab245d57b445ea20d3 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0657: `field' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `event, method'. All attributes in this section will be ignored
// Line: 8
// Compiler options: -warnaserror

using System;

interface X {
  [field:NonSerialized]
  event EventHandler XEvent;
}