2005-06-05 Peter Bartok <pbartok@novell.com>
[mono.git] / mcs / errors / cs0059.cs
1 // cs0059.cs: Iconsisten accessibility. Parameter type less accessible than delegate.
2 // Line: 10
3
4 using System;
5
6 class ErrorCS0059 {
7 }
8
9 public class Foo {
10         public delegate void ErrorCS0059Delegate (ErrorCS0059 e);
11
12         public static void Main () {
13         }
14 }
15