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

test-518.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 046d7a25184d33a0d5f60a98cf5b65065dde98e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Foo {
	public static int Main ()
	{
		int ret = 1;
		try {
			goto done;
		} finally {
			ret = 0;
		}
	done:
		return ret;
	}
}