**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs3014-1.cs
blob394a21fd24e4d8e46b9370e4167acfbc1fd8f031
1 // cs3014-1.cs: 'C.Error(bool)' 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 protected void Error (bool arg) {}