**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs3014-6.cs
blob7f8b003dc1729e8d46865c382a2686392f58fafc
1 // cs3014.cs: 'C.field' cannot be marked as CLS-compliant because the assembly is not marked as compliant
2 // Line: 8
4 using System;
5 [assembly:CLSCompliant (false)]
7 public class C {
8 [CLSCompliant (true)]
9 public long field;