Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-855.cs
1 namespace Test
2 {
3         public interface IInterface
4         {
5                 string Get (string key, string v);
6                 int Get (string key, int v);
7         }
8
9         public class BaseClass
10         {
11                 public string Get (string key, string v)
12                 {
13                         return v;
14                 }
15
16                 public int Get (string key, int v)
17                 {
18                         return 0;
19                 }
20         }
21
22         public class Subclass : BaseClass, IInterface
23         {
24                 public static void Main ()
25                 {
26                         new Subclass ();
27                 }
28         }
29 }