[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0118-14.cs
1 // CS0118: `A' is a `type' but a `variable' was expected
2 // Line: 12
3
4 class A
5 {
6 }
7
8 class B
9 {
10         public B ()
11         {
12                 A = 2;
13         }
14 }