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

error-1.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fdea34ab79c16986be852eb4cee35c86b27c34ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
// This test must produce a compilation error in each method.
using System;

public class X
{
	public static int Main ()
	{
		// This is a compilation-only test.
		return 0;
	}

	// Must assign out parameter.
	// CS0177
	public static void test1 (out float f)
	{
	}

	// Must assign it before returning.
	public static void test2 (int a, out float f)
	{
		// CS0177
		if (a == 5)
			return;

		f = 8.53F;
	}

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

	public static int test4 ()
	{
		int a;

		try {
			a = 3;
		} catch {
			Console.WriteLine ("EXCEPTION");
		}

		// CS0165
		return a;
	}

	public static int test5 ()
	{
		int a;

		try {
			Console.WriteLine ("TRY");
			a = 8;
		} catch {
			a = 9;
		} finally {
			// CS0165
			Console.WriteLine (a);
		}

		return a;
	}

	public static void test6 (int a, out float f)
	{
		do {
			// CS0177
			if (a == 8) {
				Console.WriteLine ("Hello");
				return;
			}
		} while (false);

		f = 1.3F;
		return;
	}

	// CS0177
	public static void test7 (out float f)
	{
		goto World;
		// warning CS0162
		f = 8.0F;

	World:
		;
	}
}