(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0050.cs
blobb77b72407d7edd5ff6928a733f3483e5f5fbd34c
1 // cs0050.cs: Inconsistent accessibility. Return type less accessible than method.
2 // Line: 13
4 using System;
6 class X {
7 public X ()
12 public class Foo {
13 public static X Bar () {
14 return new Foo ();
17 public static void Main () {
18 Foo x = Bar ();