Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-765.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7fe77912fcd52bde0b98791a3fca8c9b745e469c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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");
	}
}