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

cs0219.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a83537448a65d001ffc504516f6e4757b2367210 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0219.cs: The variable 'p' is declared but its value is never used
// Line: 9
// Compiler options: -warn:3 -warnaserror

class Main
{
   public void Method (int i)
   {
       long p = -9;
   }
}