[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs0050-2.cs
blob50bef0aaa87baccfd68bd1732015b589d07c7431
1 // CS0050: Inconsistent accessibility: return type `ErrorCS0052' is less accessible than method `Foo.Method()'
2 // Line: 10
4 using System;
6 class ErrorCS0052 {
9 public class Foo {
10 public ErrorCS0052 Method () {
11 Console.WriteLine ("The compile should advice the return type of this method is less accessible than the method.");
13 public static void Main () {}