Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-418-2-mod.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 286fbebf78f0faf3b50620ea2307ce294cc59262 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Compiler options: -t:module

using System;

public class M1 {

	public string Foo;

	public M1 (string foo) {
		this.Foo = foo;
	}
}