github.com/jhump/golang-x-tools@v0.0.0-20220218190644-4958d6d39439/internal/lsp/testdata/missingfunction/literals.go (about)

     1  package missingfunction
     2  
     3  type T struct{}
     4  
     5  func literals() {
     6  	undefinedLiterals("hey compiler", T{}, &T{}) //@suggestedfix("undefinedLiterals", "quickfix")
     7  }