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: 1dc8feec269f0c218c93f46a8c5e982c66d4bbe6 (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
{
	static void Main ()
	{ }
}