2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0058.cs
blobeccb598e0eabefd2e5aa3d69fd20390efc51ab34
1 // cs0058.cs: Inconsistent accessibility: return type `ErrorCS0058' is less accessible than delegate `Foo.Delegate'
2 // Line: 10
4 using System;
6 class ErrorCS0058 {
7 public ErrorCS0058 () {}
10 public class Foo {
11 public delegate ErrorCS0058 Delegate ();
13 public static void Main () {