[ci] Only build the additional profiles on one arch instead of everywhere
[mono-project.git] / mcs / errors / cs0058.cs
blobe5b0d157266455a5c67a37e5af685acf8d02723b
1 // CS0058: Inconsistent accessibility: return type `ErrorCS0058' is less accessible than delegate `Foo.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 () {