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

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

class C
{
	public static int Main ()
	{
		const string s = "oups";
		if (s.Length != 4) {
			Console.WriteLine (s.Length);
			return 2;
		}
		
		return 0;
	}
}