2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0059.cs
blob1db7c3517b26f5873dd3ac91d5faa23540a721a0
1 // cs0059.cs: Inconsistent accessibility: parameter type `ErrorCS0059' is less accessible than delegate `Foo.ErrorCS0059Delegate'
2 // Line: 10
4 using System;
6 class ErrorCS0059 {
9 public class Foo {
10 public delegate void ErrorCS0059Delegate (ErrorCS0059 e);
12 public static void Main () {