Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0220.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f28f0b87a642f891c2a3c51ade3a0a4cb4c001fd (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0220.cs: The operation overflows at compile time in checked mode
// Line: 7

public class MainClass {
        static void Main () {
                const long a = long.MaxValue;
                long b = 2 * a;
        }
}