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

cs0177-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e2bf2f158d394b63ee5149b7899e18a88c1246fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0177.cs: The out parameter 'f' must be assigned to before control leaves the current method
// Line: 5

class C {
	public static void test3 (out float f)
	{
		try {
			f = 8.53F;
		} catch {
			return;
		}
	}
}