2005-06-29 Jonathan Chambers <jonathan.chambers@ansys.com>
[mcs.git] / errors / cs3014-1.cs
blob2725f3afcdd8ebe1ce1e563a57980122072a393c
1 // cs3014-1.cs: `C.Error(bool)' 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 protected void Error (bool arg) {}