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

cs0165-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5dac08460d08b3f6549585ae4f169d276feb9ee0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// cs0165.cs: Use of unassigned local variable
// Line: 9

class C {
	public static int test4 ()
	{
		int a;

		try {
			a = 3;
		} catch {
		}

		// CS0165
		return a;
	}
}