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

test-908.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c27379dfd3bcb876c5cd0ac280832d094cb4a4bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Compiler options: -warnaserror

public class Test
{
#pragma warning disable public
#pragma warning disable CS1685
#pragma warning disable CS1700, 1701

	public static void Main ()
	{
	}
#pragma warning restore CS1685
#pragma warning restore public, 1701

	public static void TestCS ()
	{
		return;
#pragma warning disable CS0162
		return;
#pragma warning restore
	}
}