[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / test-699.cs
1 // Compiler options: -r:test-699-lib.dll
2
3 public class D : C
4 {
5         string _message = "";
6
7         public D (string msg)
8         {
9                 _message = msg;
10         }
11
12         public string message
13         {
14                 get { return _message; }
15         }
16
17         public static void Main ()
18         {
19         }
20 }