linux-packaging-mono/mcs/tests/gtest-initialize-13.cs

18 lines
266 B
C#
Raw Normal View History

using System;
public struct EventInitializerTest
{
public event Action a;
public event Action b;
public event Action c;
public static void Main()
{
Action d = null;
var eit = new EventInitializerTest() {
a = null,
b = delegate {},
c = d
};
}
}