Sign in
go
/
tools
/
545ca87cb53fecbea3162bffc4057580c456a4d0
/
.
/
gopls
/
internal
/
lsp
/
testdata
/
fillstruct
/
fill_struct_unsafe.go
blob: f5e42a4f2fea22e6e6f8cb7426c353da67734e31 [
file
] [
log
] [
blame
]
package fillstruct
import "unsafe"
type unsafeStruct struct {
x int
p unsafe.Pointer
}
func fill() {
_ := unsafeStruct{}
//@suggestedfix("}", "refactor.rewrite", "Fill")
}