如果 // 和 Go 指令之间有空格,则无法识别 Go 指令。
//
快速修复方法会移除 Go 指令之前的前导空格。
示例:
// go:embed file.txt var File string
在应用快速修复后:
//go:embed file.txt var File string