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

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

using System;
	
public class Foo
{
	[Obsolete]
	public void Something ()
	{
	}
}
	
public class Bar : Foo {
	public new void Something ()
	{
	}
	
	public static void Main ()
	{
	}
}