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

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

class X
{
	public static void Main ()
	{
		int i;
		if (true) {
			i = 3;
		}

		Console.WriteLine (i);

		int i2;
		if (false) {
			throw new ApplicationException ();
		} else {
			i2 = 4;
		}

		Console.WriteLine (i2);
	}
}