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

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

using System;
using System.Runtime.InteropServices;

[StructLayout (LayoutKind.Sequential)]
public class EventTestClass : IEventTest
{
	int i;
	public event EventHandler Elapsed;

	public static void Main ()
	{		
	}
}

public interface IEventTest 
{
	event EventHandler Elapsed;
}