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

test-920.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b061ad712283f6ba7a7fef0baea58c101ae56fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Compiler options: -warnaserror

class A
{
	public abstract class Adapter
	{
	}
}


class B : A
{
	public new int Adapter { get; set; }

	public static void Main ()
	{
	}
}