[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0031-6.cs
1 // CS0031: Constant value `999999999999999' cannot be converted to a `int'
2 // Line: 9
3
4 class X
5 {
6         public static void Main ()
7         {
8                 int i = 3;
9                 i += 999999999999999;
10         }
11 }
12