Merge pull request #5693 from lateralusX/lateralusX/disable-stack-overflow-win-x64
[mono.git] / mcs / errors / cs0168.cs
1 // CS0168: 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 }