linux-packaging-mono/mcs/tests/test-418-2-mod.cs

14 lines
137 B
C#
Raw Normal View History

// Compiler options: -t:module
using System;
public class M1 {
public string Foo;
public M1 (string foo) {
this.Foo = foo;
}
}