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

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

class Program
{
	public static int Main ()
	{
string s = @"a

";
		if (s.Length != 5)
			return 1;
			
		return 0;
	}
}