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

test-938.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 17bf81eb92129aa6488116ef67588ea95f91c332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace Example
{
	public class A : A.InnerInterface
	{
		public interface InnerInterface
		{
		}

		public static void Main ()
		{
		} 
	}
}