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

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

interface I
{
	void Finalize ();
}

class MainClass
{
	void Foo (I i)
	{
		i.Finalize ();
	}

	public static void Main ()
	{
	}
}