[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0122-34.cs
1 // CS0122: `Foo.Print(this string)' is inaccessible due to its protection level
2 // Line: 19
3
4
5 using System;
6
7 static class Foo
8 {
9         static void Print (this string s)
10         {
11         }
12 }
13
14 static class Program
15 {
16         static void Main(string[] args)
17         {
18                 string s = "Hello, world";
19                 Foo.Print(s);
20         }
21 }