summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0657-22.cs
blob: 5191de1665645887e4d1b5fdd13618f0bb9737d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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: 9
// Compiler options: -warnaserror

using System;

abstract class X
{
	[field:NonSerialized]
	public abstract event EventHandler XEvent;
}