-
Notifications
You must be signed in to change notification settings - Fork 364
New issue
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
constant bit operation #907
Comments
I just tried it on my device, it seems to work just fine., which version of go are you trying, and which type of system are you running ? I'm using go version |
yaegi v0.9.3, go1.15.2 linux/amd64 |
Oh, I forgot to check with yaegi, also not working. |
mvertes
added a commit
that referenced
this issue
Oct 15, 2020
In unary constant operations, the test for unsigned was defeated by testing for int first, which is true also for unsigned. Make sure that testing for unsigned precedes testing for int. Fixes #907.
traefiker
pushed a commit
that referenced
this issue
Oct 19, 2020
In unary constant operations, the test for unsigned was defeated by testing for int first, which is true also for unsigned. Make sure that testing for unsigned precedes testing for int. Fixes #907.
traefiker
pushed a commit
that referenced
this issue
Oct 19, 2020
In unary constant operations, the test for unsigned was defeated by testing for int first, which is true also for unsigned. Make sure that testing for unsigned precedes testing for int. Fixes #907.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The following program
sample.go
triggers a panic:Expected result:
Got:
The text was updated successfully, but these errors were encountered: