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

cs0058.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 82c1e9062a761a8316efb64569be99d6d357010b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// cs0058.cs: Incompatible accessibility. Parameter type is less accessible than delegate.
// Line: 10

using System;

class ErrorCS0058 {
	public ErrorCS0058 () {}
}

public class Foo {
	public delegate ErrorCS0058 Delegate ();

	public static void Main () {
	}
}