2005-06-29 Jonathan Chambers <jonathan.chambers@ansys.com>
[mcs.git] / errors / cs1667-4.cs
blobd256696d583e180f785c239d23b89a5f18644d0d
1 // cs1667-4.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: 10
4 using System;
5 using System.Diagnostics;
7 class Class1
9 public event ResolveEventHandler G {
10 [CLSCompliant(false)]
11 add {}
12 remove {}