[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs0109-9.cs
blobfef7758c744d3e6d920119ce852d67a0f6149dc8
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
5 public abstract class Base
7 public delegate void Action<U> (U val);
10 public class Derived : Base
12 public new delegate void Action<T, U> (U val);