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

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

public class C
{
	public int Finalize;
	
	public static void Main ()
	{
	}
}

public class D : C
{
	~D ()
	{
	}
}