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

test-835.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c3734807c4dc03cd63eedd586c592f9be1a585c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using C = A.D;
using System;

class AA
{
	internal class D : Exception { }
}

class A : AA
{
	public static void Main()
	{
		object o = new C();
	}
}