blob: cf70d3b2732b61aca0216b1c7412c6fcc8f82d9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
using System;
class A
{
public static void Foo (int x, int y)
{
}
}
sealed class B : A
{
public static void Main ()
{
Foo (1, 2);
}
void Foo (int i)
{
}
}
|