[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / test-418-2-mod.cs
1 // Compiler options: -t:module
2
3 using System;
4
5 public class M1 {
6
7         public string Foo;
8
9         public M1 (string foo) {
10                 this.Foo = foo;
11         }
12 }
13