blob: 15a23f4d0a3cff31ed2330978735388dce30f6f2 [file] [log] [blame]
-- suggestedfix_fix_import_12_1 --
// Copyright 2023 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package embeddirective
import (
_ "embed"
"io"
"os"
)
//go:embed embed.txt //@suggestedfix("//go:embed", "quickfix", "")
var t string
func unused() {
_ = os.Stdin
_ = io.EOF
}