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