w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs3018-4.cs
blob2bc993e1962a9503ada299e3c48ff59589aaa183
1 // CS3018: `C.Error(bool)' cannot be marked as CLS-compliant because it is a member of non CLS-compliant type `C'
2 // Line: 10
3 // Compiler options: -warnaserror -warn:1
5 using System;
6 [assembly:CLSCompliant (false)]
8 public class C {
9 [CLSCompliant (true)]
10 protected void Error (bool arg) {}