Add new tests, enable old friends
[mono.git] / mcs / errors / cs3014-1.cs
1 // cs3014-1.cs: 'C.Error(bool)' cannot be marked as CLS compliant because the assembly is not marked as compliant
2 // Line: 8
3
4 using System;
5 [assembly:CLSCompliant (false)]
6
7 public class C {
8         [CLSCompliant (true)]
9         protected void Error (bool arg) {}
10
11 }