1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
// Compiler options: -warnaserror -warn:4 using System; public class Foo { [Obsolete] public void Something () { } } public class Bar : Foo { public new void Something () { } public static void Main () { } }