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

test-877.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b372dfc26fab45329320c5c48fb330650ecb1be6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;

struct S
{
	string value;

	public S (int arg)
	{
		throw new ApplicationException ();
	}
}

public class A
{
	public static void Main ()
	{
	}
}