Copied remotely
[mono.git] / mcs / errors / cs0220.cs
1 // cs0220.cs: The operation overflows at compile time in checked mode\r
2 // Line: 7\r
3 \r
4 public class MainClass {\r
5         static void Main () {\r
6                 const long a = long.MaxValue;\r
7                 long b = 2 * a;\r
8         }\r
9 }\r
10 \r
11 \r