a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
25 lines
203 B
C#
25 lines
203 B
C#
using System;
|
|
|
|
class B : A
|
|
{
|
|
public static void Foo (int i)
|
|
{
|
|
}
|
|
}
|
|
|
|
class A
|
|
{
|
|
public static void Foo (string s)
|
|
{
|
|
}
|
|
}
|
|
|
|
|
|
public static class Test
|
|
{
|
|
public static void Main ()
|
|
{
|
|
B.Foo ("a");
|
|
}
|
|
}
|