[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / test-cls-14.cs
1 // Compiler options: -warnaserror
2
3 using System;
4 [assembly:CLSCompliant (true)]
5
6 public class CLSClass {
7         [CLSCompliant (false)]
8         static public implicit operator CLSClass(byte value) {
9                return new CLSClass();
10         }
11
12 #pragma warning disable 3019, 169
13         [CLSCompliant (true)]
14         private void Error (bool arg) {
15         }
16 #pragma warning restore 3019, 169
17 }
18
19 public class MainClass {
20         public static void Main () {
21         }
22 }