mirror of
https://github.com/golang/go
synced 2024-11-06 22:46:14 -07:00
14 lines
139 B
Plaintext
14 lines
139 B
Plaintext
|
-- suggestedfix --
|
||
|
package suggestedfix
|
||
|
|
||
|
import (
|
||
|
"log"
|
||
|
)
|
||
|
|
||
|
func goodbye() {
|
||
|
s := "hiiiiiii"
|
||
|
//@suggestedfix("s = s")
|
||
|
log.Printf(s)
|
||
|
}
|
||
|
|