Fix indentation, spacing.
[mono-project.git] / mcs / errors / cs0109-10.cs
blob4cd7feac9bd3b4eef249bf3ecfcc51adce06577a
1 // CS0109: The member `Derived<U>.Action' 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<U> : Base
12 new internal Action<U> Action;