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

cs0628-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ee696b95ee68ba1bfa23c0737b08e74b8c4e7e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// cs0628-3.cs: `Test.print_argv(string[])': new protected member declared in sealed class
// Line: 8
// Compiler options: -warn:4 -warnaserror

using System;

internal sealed class Test {
	protected string print_argv (string[] argv)
	{
		if (argv == null)
			return "null";
		else
			return String.Join (":", argv);
	}

	static void Main () { }
}