In .:
[mono.git] / mcs / errors / cs1667-5.cs
1 // cs1667-5.cs: 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
2 // Line: 7
3
4 using System;
5
6 public interface X {
7   [method:CLSCompliant (false)]
8   event EventHandler XEvent;
9 }