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

test-541.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6b024228830ff4be07e66e868fa3c88e580e4671 (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 ClassMain
{
	delegate void D (int i);
	
	public static void Main ()
	{
		if (true) {
			const bool test = false;
		} else {
			test = false;
		}
		
		D d = delegate (int test) { };
	}
	
	static bool test { 
		set {
		}
	}
}