What version of Go, VS Code & VS Code Go extension are you using?
Version Information
- Run
go version to get version of Go from the VS Code integrated terminal.
- go version go1.21.2 darwin/arm64
- Run
gopls -v version to get version of Gopls from the VS Code integrated terminal.
- golang.org/x/tools/gopls v0.15.2
- Run
code -v or code-insiders -v to get version of VS Code or VS Code Insiders.
- 1.87.2
863d2581ecda6849923a2118d93a088b0745d9d6
arm64
- Check your installed extensions to get the version of the VS Code Go extension
- Run Ctrl+Shift+P (Cmd+Shift+P on Mac OS) >
Go: Locate Configured Go Tools command.
- toolsGopath:
gopath: /Users/foo/go
GOROOT: /usr/local/go
Share the Go related settings you have added/edited
Run Preferences: Open Settings (JSON) command to open your settings.json file.
Share all the settings with the go. or ["go"] or gopls prefixes.
Workspace settings:
{
"go.buildTags": "integration,tinygo.wasm,k8s_integration,module_integration,mage_cloudactions,wireinject,cgo"
}
Describe the bug
There are several variants of the structure for different builds: common with the constraint //go:build !tinygo.wasm and Wasm //go:build tinygo.wasm. Some methods are defined only for common builds (they will never be called in a Wasm build) and this is handled normally in IDEs like Goland or Zed but in VSCode I get a warning:
uuid.New().URN undefined (type uuid.UUID has no field or method URN)
Additional: I get the following warning for a package with a constraint for a common build:
No packages found for open file /Users/nikita/projects/trivy/pkg/uuid/uuid.go.
This file may be excluded due to its build tags; try adding "-tags=" to your gopls "buildFlags" configuration
See the documentation for more information on working with build tags:
https://github.com/golang/tools/blob/master/gopls/doc/settings.md#buildflags-string.
Steps to reproduce the behavior:
- git clone
git@github.com:aquasecurity/trivy.git
- cd trivy && code .
- open
pkg/sbom/cyclonedx/marshal.go
Screenshots or recordings
If applicable, add screenshots or recordings to help explain your problem.

What version of Go, VS Code & VS Code Go extension are you using?
Version Information
go versionto get version of Go from the VS Code integrated terminal.gopls -v versionto get version of Gopls from the VS Code integrated terminal.code -vorcode-insiders -vto get version of VS Code or VS Code Insiders.863d2581ecda6849923a2118d93a088b0745d9d6
arm64
Go: Locate Configured Go Toolscommand.gopath: /Users/foo/go
GOROOT: /usr/local/go
Share the Go related settings you have added/edited
Run
Preferences: Open Settings (JSON)command to open your settings.json file.Share all the settings with the
go.or["go"]orgoplsprefixes.Workspace settings:
{ "go.buildTags": "integration,tinygo.wasm,k8s_integration,module_integration,mage_cloudactions,wireinject,cgo" }Describe the bug
There are several variants of the structure for different builds: common with the constraint
//go:build !tinygo.wasmand Wasm//go:build tinygo.wasm. Some methods are defined only for common builds (they will never be called in a Wasm build) and this is handled normally in IDEs like Goland or Zed but in VSCode I get a warning:Additional: I get the following warning for a package with a constraint for a common build:
Steps to reproduce the behavior:
git@github.com:aquasecurity/trivy.gitpkg/sbom/cyclonedx/marshal.goScreenshots or recordings
If applicable, add screenshots or recordings to help explain your problem.