[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0825-3.cs
1 // CS0825: The contextual keyword `var' may only appear within a local variable declaration
2 // Line: 9
3
4
5 public class Test
6 {
7         const var v = 9;
8 }
9