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: 4a5e87d3d5213d4ba70a5f52f616971938dcdc1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cs0059.cs: Iconsisten accessibility. Parameter type less accessible than delegate.
// Line: 10

using System;

class ErrorCS0059 {
}

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

	public static void Main () {
	}
}