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

cs1667-5.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: acfb04310dc85ca3da047b7f2df9df56b9790aba (plain)
1
2
3
4
5
6
7
8
9
// cs1667.cs: Attribute 'CLSCompliant' is not valid on property or event accessors. It is valid on 'assembly, module, class, struct, enum, constructor, method, property, indexer, field, event, interface, param, delegate, return, type parameter' declarations only.
// Line: 7

using System;

public interface X {
  [method:CLSCompliant (false)]
  event EventHandler XEvent;
}