[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0628-3.cs
1 // CS0628: `Test.print_argv(string[])': new protected member declared in sealed class
2 // Line: 8
3 // Compiler options: -warn:4 -warnaserror
4
5 using System;
6
7 internal sealed class Test {
8         protected string print_argv (string[] argv)
9         {
10                 if (argv == null)
11                         return "null";
12                 else
13                         return String.Join (":", argv);
14         }
15
16         static void Main () { }
17 }