Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-765.cs
1 using System;
2
3 class B : A
4 {
5         public static void Foo (int i)
6         {
7         }
8 }
9
10 class A
11 {
12         public static void Foo (string s)
13         {
14         }
15 }
16
17
18 public static class Test
19 {
20         public static void Main ()
21         {
22                 B.Foo ("a");
23         }
24 }