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

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

public class C
{
	public static int Main ()
	{
		try {
			throw new ArgumentException ();
		} catch (ArgumentException) {
			return 0;
		} catch {
			return 1;
		}
	}
}