summaryrefslogtreecommitdiff
path: root/mcs/tests/test-317.cs
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 ()
	{ }
}