[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs1525-7.cs
1 // CS1525: Unexpected symbol `this', expecting `(', `[', `{', or `type'
2 // Line: 8
3
4 class M
5 {
6     public static void Main ()
7     {
8         p = new this;
9     }
10 }
11