[runtime] Don't insta-fail when a faulty COM type is encountered. (#5616)
[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 }