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

cs1635.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fe89378edae938798b3cb80e0429cfcbb58d12af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs1635.cs: Cannot restore warning `CS0219' because it was disabled globally
// Line: 11
// Compiler options: -nowarn:219 -warnaserror

class C
{
    public static void Main ()
    {
#pragma warning disable 219
	int o = 4;
#pragma warning restore 219
    }
}