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
package main func main() { type String string t := []byte{} _ = t s := String("ciao") _ = s _ = 2 + append(t, s...) }
invalid operation: 2 + append(t, s...) (mismatched types int and []byte)
invalid operation: 2 + append(t, s...) (cannot convert 2 (type untyped int) to type []uint8)
The text was updated successfully, but these errors were encountered:
This is a duplicate of #385.
Sorry, something went wrong.
gazerro
No branches or pull requests
Source code
Expected error (returned by gc)
Error returned by Scriggo
The text was updated successfully, but these errors were encountered: