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

cs0535-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6b50e0bdc25b1641489f1c52e602bf756a15979b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// cs0535.cs: 'Test' does not implement interface member 'X.Hola(ref string)'
// Line: 9

using System;
interface X {
	void Hola (ref string name);
}

class Test : X {
	static void Main ()
	{
	}

	public void Hola (out string name)
	{
		name = null;
	}
}