Skip to content
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

Strings cannot be nil #2144

Open
dlsniper opened this issue Dec 24, 2015 · 0 comments · May be fixed by #2871
Open

Strings cannot be nil #2144

dlsniper opened this issue Dec 24, 2015 · 0 comments · May be fixed by #2871

Comments

@dlsniper
Copy link
Member

package demo

func _() {
    var x string = nil // cannot use nil as type string in assignment

    if x == nil { // invalid operation: x == nil (mismatched types string and nil)
        x = "default"
    }
}
@Alioramus Alioramus linked a pull request Feb 19, 2017 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants