[loader] LoadFrom of problematic images should reprobe
[mono-project.git] / mcs / errors / cs0109-11.cs
blob6891e46ba5515251882037604c25692a133b356b
1 // CS0109: The member `Wrapper.DerivedClass.AnInt' does not hide an inherited member. The new keyword is not required
2 // Line: 18
3 // Compiler options: -warnaserror
5 public abstract class BaseClass
7 private static readonly int AnInt = 1;
9 public static void Main ()
14 public static class Wrapper
16 public class DerivedClass : BaseClass
18 private new static readonly int AnInt = 2;