blob: c2609cbcc5ec25691039fe5a3c3e88dcb05d8006 [file] [log] [blame]
// Copyright 2022 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 a
import (
_ "embed"
"fmt"
)
//go:embed embedtext // want "must import \"embed\" when using go:embed directives"
var s string
// This is main function
func main() {
fmt.Println(s)
}