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

test-619.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1a1116efc9f32004e1dd7e4f1835411ddbb91327 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class X
{
	public static void Main ()
	{
		while (true) {
			if (true)
				break;

			continue;
		}
	}
}