Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0657-19.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0fa81375dbeed4584ff91857c918dca3e8592e69 (plain)
1
2
3
4
5
6
7
8
9
// cs0657-19.cs: `field' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `event, method'
// Line : 7

using System;

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