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

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

class Foo {
	public static int Main ()
	{
		for (;;) {
			try {
				break;
			} catch {
				continue;
			}
		}
		return 0;
	}
}