[bcl] Update BCL Linked Size
[mono-project.git] / mcs / tests / test-276.cs
blobf56d84eb2c98ce83e4273bf9af822d60562db98c
1 // Compiler options: -warnaserror -warn:4
3 using System;
4 using System.Runtime.InteropServices;
6 [StructLayout (LayoutKind.Sequential)]
7 public class EventTestClass : IEventTest
9 int i;
10 public event EventHandler Elapsed;
12 public static void Main ()
17 public interface IEventTest
19 event EventHandler Elapsed;