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

test-915.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b7936984a92600744ec00a90dc5cf3a5bed73a39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class ClassMain
{
	static bool test = true;

	public static void Main ()
	{
		if (true) {
			const int test = 0;
		}
		test = false;
	}
}