Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-909.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8527bb951eb5452947b01e8af8771d90040c2da0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 ()
	{
	}
}