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: 670b285ac43aed74e9f5b73af977b0aeecb3a893 (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;
   }
}