[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs7025.cs
1 // CS7025: Inconsistent accessibility: event type `System.Action<I>' is less accessible than event `C.E'
2 // Line: 8
3
4 using System;
5
6 public class C
7 {
8         public event Action<I> E;
9 }
10
11 interface I
12 {
13 }