**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0220.cs
blobaa5982aea9d9a8a0757071950321547bf76a01d1
1 // cs0220.cs: The operation overflows at compile time in checked mode
2 // Line: 7
4 public class MainClass {
5 static void Main () {
6 const long a = long.MaxValue;
7 long b = 2 * a;