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

test-714.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d60558e447b7efa6b54ba3a2dce614ca1ad0e8fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;

class Hello : IFoo
{
	void IBar.Test ()
	{
	}
	
	public static void Main ()
	{
	}
}

interface IBar
{
	void Test ();
}

interface IFoo : IBar
{
}