You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TestAvoidDotImportRemoved — removing import . "fmt" leaves bare Println dangling (undefined: Println) and a now-unused "fmt". The fix needs to re-qualify references (Println → fmt.Println), which the unused-import pass (Fix recipes to remove unused imports #32) can’t do on its own.