[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0220-3.cs
blob0d2d19be0715e5617beef5fe8471b6c69f006e61
1 // CS0220: The operation overflows at compile time in checked mode
2 // Line: 7
4 enum E1 : byte
6 A = 2
9 enum E2 : ulong
11 A = ulong.MaxValue - 1,
12 B = E1.A * E2.A