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: 0e7f61d6d10397d412de7436b3a44a63b7cfbc32 (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
    }
}