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

cs0120-9.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 607cb9760ee4ee17eb2a1c207ca5b41dd58cd45b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0120-9.cs: `X.Y(System.Text.StringBuilder)': An object reference is required for the nonstatic field, method or property
// Line: 8

using System.Text;

class X {
	static void Main () {
		X.Y(null);	
	}
	
	void Y(StringBuilder someParam) {
	}
}