[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0220.cs
1 // CS0220: The operation overflows at compile time in checked mode
2 // Line: 7
3
4 public class MainClass {
5         static void Main () {
6                 const long a = long.MaxValue;
7                 long b = 2 * a;
8         }
9 }
10
11