[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs1021.cs
1 // CS1021: Integral constant is too large
2 // Line: 6
3
4 class X {
5         public static void Main() {
6                 int i = 123821738792178327198;
7         }
8 }