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

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

enum E1 : byte
{
  A = 2
}

enum E2 : ulong
{
  A = ulong.MaxValue - 1,
  B = E1.A * E2.A
}