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

test-317.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 84676a46ff0f6f3db29f4ab6e4fc4d19ee957f1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Compiler options: /warn:4 /warnaserror
interface IFoo
{
	void Test (int t);
}

interface IBar : IFoo
{
	new int Test (int t);
}

class X
{
	public static void Main ()
	{ }
}