[wasm] Implement GC support. Embedder must provide main loop pumping function request...
[mono.git] / mcs / errors / cs0815.cs
1 // CS0815: An implicitly typed local variable declaration cannot be initialized with `null'
2 // Line: 9
3
4
5 public class Test
6 {
7         static void Main ()
8         {
9                 var v = null;
10         }
11 }
12