(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0058.cs
blob82c1e9062a761a8316efb64569be99d6d357010b
1 // cs0058.cs: Incompatible accessibility. Parameter type is less accessible than 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 () {