[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs0219.cs
blobdc12de5a79d07e744357755a9063a7ac1ac680f9
1 // CS0219: The variable `p' is assigned but its value is never used
2 // Line: 9
3 // Compiler options: -warn:3 -warnaserror
5 class Main
7 public void Method (int i)
9 long p = -9;