summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0059.cs
blob: 4afda7adf21773c6aa7152f3f9b715b9df21e7e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS0059: 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 () {
	}
}