Flush
[mono.git] / mcs / tests / module-1.cs
1
2 using System;
3
4 public class M1 {
5
6         public string Foo;
7
8         public M1 (string foo) {
9                 this.Foo = foo;
10         }
11 }
12