2006-09-21 Mike Kestner <mkestner@novell.com>
[mcs.git] / errors / cs3014-6.cs
blobed3dede351b733e2736f27898f7716d7e1174852
1 // cs3014-6.cs: `C.field' cannot be marked as CLS-compliant because the assembly is not marked as CLS-compliant
2 // Line: 8
4 using System;
5 [assembly:CLSCompliant (false)]
7 public class C {
8 [CLSCompliant (true)]
9 public long field;