Merge pull request #896 from echampet/webresource
[mono.git] / mcs / tests / test-276.cs
1 // Compiler options: -warnaserror -warn:4
2
3 using System;
4 using System.Runtime.InteropServices;
5
6 [StructLayout (LayoutKind.Sequential)]
7 public class EventTestClass : IEventTest
8 {
9         int i;
10         public event EventHandler Elapsed;
11
12         public static void Main ()
13         {               
14         }
15 }
16
17 public interface IEventTest 
18 {
19         event EventHandler Elapsed;
20 }