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
Output of the following program
package main var a = complex64(4e38) func main() { println(a) }
is (when built with gc compiler):
(+Inf+0.000000e+000i)
This is wrong. The conversion must not be compiled as the constant does not fit into complex64.
The following program hangs infinitely in go tool compile:
go tool compile
package main func main() { var a = complex64(4e38) println(a) }
Seems to be the same issue.
go version devel +514014c Thu Jun 18 15:54:35 2015 +0200 linux/amd64
The text was updated successfully, but these errors were encountered:
Probably the same issue:
package main var a = complex64(0)/700000000000000000000000000000000000000
must not be compiled, but gc compiles successfully.
Sorry, something went wrong.
Dup of #11590.
No branches or pull requests
Output of the following program
is (when built with gc compiler):
This is wrong. The conversion must not be compiled as the constant does not fit into complex64.
The following program hangs infinitely in
go tool compile
:Seems to be the same issue.
go version devel +514014c Thu Jun 18 15:54:35 2015 +0200 linux/amd64
The text was updated successfully, but these errors were encountered: