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

cs0059.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1db7c3517b26f5873dd3ac91d5faa23540a721a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cs0059.cs: Inconsistent accessibility: parameter type `ErrorCS0059' is less accessible than delegate `Foo.ErrorCS0059Delegate'
// Line: 10

using System;

class ErrorCS0059 {
}

public class Foo {
	public delegate void ErrorCS0059Delegate (ErrorCS0059 e);

	public static void Main () {
	}
}