* TraceListener.cs: Make sure that indents are initially written. This allows
[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 }
8
9 class Foo {
10         public delegate ErrorCS0058 Delegate ();
11
12         public static void Main () {
13         }
14 }
15