Switch to compiler-tester
[mono.git] /
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