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

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

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