[ci] Small improvements for run-jenkins and collect-coverage. (#5669)
[mono.git] / mcs / tests / test-333.cs
1 // Compiler options: -warnaserror -warn:4
2
3 using System;
4         
5 public class Foo
6 {
7         [Obsolete]
8         public void Something ()
9         {
10         }
11 }
12         
13 public class Bar : Foo {
14         public new void Something ()
15         {
16         }
17         
18         public static void Main ()
19         {
20         }
21 }