[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git] / mcs / errors / cs7025.cs
blob59eca472d26fc8cbd8a483e513013af71fa2ecce
1 // CS7025: Inconsistent accessibility: event type `System.Action<I>' is less accessible than event `C.E'
2 // Line: 8
4 using System;
6 public class C
8 public event Action<I> E;
11 interface I