[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0058.cs
1 // CS0058: Inconsistent accessibility: return type `ErrorCS0058' is less accessible than delegate `Foo.Delegate'
2 // Line: 10
3
4 using System;
5
6 class ErrorCS0058 {
7         public ErrorCS0058 () {}
8 }
9
10 public class Foo {
11         public delegate ErrorCS0058 Delegate ();
12
13         public static void Main () {
14         }
15 }
16