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

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

class Z
{
	public static int Main()
	{
		char x = '●';
		string s = "●";
		if (x != 9679)
			return 1;
		
		if (s.Length != 1)
			return 2;
			
		Console.WriteLine (s);
		return 0;
	}
}