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

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

public class TestClass : TestBaseClass {

	public TestClass (EventHandler hndlr) : base ()
	{
		Blah += hndlr;
	}

	public static int Main ()
	{
		return 0;
	}
}

public class TestBaseClass {

	public event EventHandler Blah;

}