* Makefile (MCS) [PROFILE=default]: Force testing of 'mcs'.
[mono.git] / mcs / tests / module-1.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