[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0649-4.cs
1 // CS0649: Field `X.x' is never assigned to, and will always have its default value `0'
2 // Line: 4
3 // Compiler options: -warnaserror -warn:4
4
5 class X
6 {
7         public readonly int x;
8 }