[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0109-9.cs
1 // CS0109: The member `Derived.Action<T,U>' does not hide an inherited member. The new keyword is not required
2 // Line: 12
3 // Compiler options: -warnaserror -warn:4
4
5 public abstract class Base
6 {
7         public delegate void Action<U> (U val);
8 }
9
10 public class Derived : Base
11 {
12         public new delegate void Action<T, U> (U val);
13 }