[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / gtest-initialize-13.cs
blob7c213e461eb548982010b1493f3a0dd0ec0b784a
1 using System;
3 public struct EventInitializerTest
5 public event Action a;
6 public event Action b;
7 public event Action c;
9 public static void Main()
11 Action d = null;
12 var eit = new EventInitializerTest() {
13 a = null,
14 b = delegate {},
15 c = d