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