* TraceListener.cs: Make sure that indents are initially written. This allows
[mono.git] / mcs / errors / cs0050.cs
1 // cs0050.cs: Inconsistent accessibility. Return type less accessible than method.
2 // Line: 7
3
4 using System;
5
6 class Foo {
7         public static Foo Bar () {
8                 return new Foo ();
9         }
10
11         public static void Main () {
12                 Foo x = Bar ();
13         }
14 }
15