Merge pull request #4615 from alexanderkyte/string_error_handling
[mono.git] / mcs / errors / cs0219.cs
1 // CS0219: The variable `p' is assigned 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 }