github.com/sdboyer/gps@v0.16.3/_testdata/src/varied/locals.go (about)

     1  package main
     2  
     3  import (
     4  	"varied/namemismatch"
     5  	"varied/otherpath"
     6  	"varied/simple"
     7  )
     8  
     9  var (
    10  	_ = simple.S
    11  	_ = nm.V
    12  	_ = otherpath.O
    13  )