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: e06ce056dffc41d09df8fa10dec88bef22d959b4 (plain)
1
2
3
4
5
6
7
8
9
10
// CS1667: Attribute `System.CLSCompliantAttribute' is not valid on property or event accessors. It is valid on `assembly, module, class, struct, enum, constructor, method, property, indexer, field, event, interface, parameter, delegate, return' declarations only
// GMCS1667: Attribute `System.CLSCompliantAttribute' is not valid on property or event accessors. It is valid on `assembly, module, class, struct, enum, constructor, method, property, indexer, field, event, interface, parameter, delegate, return, type parameter' declarations only
// Line: 8

using System;

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