a83537448a65d001ffc504516f6e4757b2367210
[mono.git] / mcs / errors / cs0219.cs
1 // cs0219.cs: The variable 'p' is declared but its value is never used
2 // Line: 9
3 // Compiler options: -warn:3 -warnaserror
4
5 class Main
6 {
7    public void Method (int i)
8    {
9        long p = -9;
10    }
11 }