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

test-381.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a8f9d728a88addeda20898298ab3e274e188e2f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
public class Application
{
	public static void Main(string[] args)
	{
		if (true)
		{
			string thisWorks = "nice";
			System.Console.WriteLine(thisWorks);
		}
		else
		{
			string thisDoesnt;
			System.Console.WriteLine();
			thisDoesnt = "not so";
			System.Console.WriteLine(thisDoesnt);
		}
	}
}