2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / cs0168.cs
1 // cs0168.cs: The variable 'p' is declared but 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;
10    }
11 }