summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0220-2.cs
blob: d7b1f6a980eb577b11f63969e8dde337c58627fc (plain)
1
2
3
4
5
6
7
8
9
10
// CS0220: The operation overflows at compile time in checked mode
// Line: 7

public class MainClass {
        static void Main () {
                int a = -int.MinValue;
        }
}