We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Int128
runtime/src/libraries/System.Private.CoreLib/src/System/Int128.cs
Lines 311 to 317 in 82dac28
Overflows are ignored when lower >= 0.
lower
Search if (~value._upper == 0) in that file to find more.
if (~value._upper == 0)
Int128 a = new(ulong.MaxValue, 42); var b = checked((long)a); Console.WriteLine(b);
OverflowException
42
No response
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Description
runtime/src/libraries/System.Private.CoreLib/src/System/Int128.cs
Lines 311 to 317 in 82dac28
Overflows are ignored when
lower
>= 0.Search
if (~value._upper == 0)
in that file to find more.Reproduction Steps
Expected behavior
OverflowException
Actual behavior
42
Regression?
No response
Known Workarounds
No response
Configuration
No response
Other information
No response
The text was updated successfully, but these errors were encountered: