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

proposal: cmd/vet: consider reporting invalid/ignored Go versions in build tags #64127

Open
griesemer opened this issue Nov 14, 2023 · 5 comments
Labels
Milestone

Comments

@griesemer
Copy link
Contributor

Files may specify their own Go language version via a build tag. For instance:

//go:build go1.22

indicates that this file requires Go language version 1.22.

If the language version in the build tag contains dot-release information, say it's "go1.22.1", it is invalid.
The compiler simply ignores the version (it doesn't use, say "go1.22").

It seems (to me) that this shouldn't be silently ignored as it might be very confusing for users. go vet might be the right tool to report an error. Alternatively, the compiler could report an error, but generally, the compiler doesn't complain about errors in (pragma and build) comments.

@gopherbot gopherbot added this to the Proposal milestone Nov 14, 2023
@timothy-king
Copy link
Contributor

go/analysis/passes/buildtag would be a good home for this check.

@raghvenders

This comment was marked as off-topic.

@raghvenders
Copy link
Contributor

@griesemer @ianlancetaylor - Do you consider handling tags including expression like go:build go1.21 && go1.22.3 or a single tag ?

@raghvenders

This comment was marked as resolved.

@griesemer
Copy link
Contributor Author

It should report any Go version string that is silently dropped and ignored.
Also, before anybody starts working on this: note this is a proposal and needs to be discussed by the proposal review committee first. Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Status: Incoming
Development

No branches or pull requests

4 participants