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

test-852.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3f5001728b84d5bb86fdedb7930ae90d642aa45e (plain)
1
2
3
4
5
6
7
8
9
10
11
// Compiler options: -warnaserror

public class Test
{
#pragma warning disable 1634
#pragma warning suppress 56500
	public static void Main ()
	{
	}
#pragma warning restore 1634
}