We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
gotype successfully compiles the following program:
package a var a = complex64(1) << 2
gccgo also compiles it. gc rejects it saying:
invalid operation: complex64(1) << 2 (shift of type complex64)
Spec says that lhs of shift must be an integer.