Skip to content

x/tools/go/packages:declared but not used #52345

Closed
@lvyahui8

Description

@lvyahui8

What version of Go are you using (go version)?

$ go version  go1.17.6 darwin/amd64

Does this issue reproduce with the latest release?

yes

What operating system and processor architecture are you using (go env)?

go env Output
$ go env
GO111MODULE="on"
GOARCH="amd64"
GOBIN=""
GOCACHE="/Users/xxxxx/Library/Caches/go-build"
GOENV="/Users/xxxxx/Library/Application Support/go/env"
GOEXE=""
GOEXPERIMENT=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOINSECURE=""
GOMODCACHE="/Users/xxxxx/go/pkg/mod"
GONOPROXY="xxxxxxxx"
GONOSUMDB="xxxxxxxx"
GOOS="darwin"
GOPATH="/Users/xxxxx/go"
GOPRIVATE="xxxxxxxx"
GOPROXY="xxxxxxxxx"
GOROOT="/usr/local/Cellar/go/1.17.6/libexec"
GOSUMDB="sum.golang.google.cn"
GOTMPDIR=""
GOTOOLDIR="/usr/local/Cellar/go/1.17.6/libexec/pkg/tool/darwin_amd64"
GOVCS=""
GOVERSION="go1.17.6"
GCCGO="gccgo"
AR="ar"
CC="clang"
CXX="clang++"
CGO_ENABLED="1"
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -arch x86_64 -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/p0/kb961x5d6wd79gfp2h6t_8500000gn/T/go-build1578457773=/tmp/go-build -gno-record-gcc-switches -fno-common"

What did you do?

I have written a simple program. It contains variables that are defined but not used. It can be successfully compiled to executable program, but when I load the package with golang analysis tool, I get the error that it is defined but not used.

image

package main

import (
	"fmt"
	"golang.org/x/tools/go/packages"
)

func main() {
	rootDir := "/tmp/example"
	cfg := &packages.Config{
		Mode:  packages.LoadAllSyntax,
		Tests: false,
		Dir:   rootDir,
	}
	packageArr, _ := packages.Load(cfg)
	fmt.Printf("pkg err : %+v", packageArr[0].Errors)
}

err output

pkg err : [/tmp/example/main.go:11:4: vv declared but not used]

What did you expect to see?

I would like to see a consistent behavior of the compilation tools, either fail or both succeed.

What did you see instead?

inconsistent results

Activity

added
ToolsThis label describes issues relating to any tools in the x/tools repository.
on Apr 14, 2022
added this to the Unreleased milestone on Apr 14, 2022
seankhliao

seankhliao commented on Apr 14, 2022

@seankhliao
Member

Duplicate of #3059

locked and limited conversation to collaborators on Apr 14, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    FrozenDueToAgeToolsThis label describes issues relating to any tools in the x/tools repository.

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @gopherbot@lvyahui8@seankhliao

        Issue actions

          x/tools/go/packages:declared but not used · Issue #52345 · golang/go