Files
linux-packaging-mono/mcs/tests/test-909.cs

18 lines
188 B
C#
Raw Normal View History

using System;
public struct S
{
public int A { get; private set;}
public event EventHandler eh;
public S (int a)
{
this.eh = null;
A = a;
}
public static void Main ()
{
}
}