[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[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 }