[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs3019-3.cs
1 // CS3019: CLS compliance checking will not be performed on `CLSClass.Foo()' because it is not visible from outside this assembly
2 // Line: 8
3 // Compiler options: -warnaserror -warn:2
4
5 using System;
6 [assembly:CLSCompliant (true)]
7
8 public partial class CLSClass
9 {
10         [CLSCompliant (false)]
11         partial void Foo ();
12         
13         partial void Foo ()
14         {
15         }
16 }