// 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; } }