1// +build ignore
2
3package I1
4
5import (
6	"errors"
7	"fmt"
8)
9
10func example() {
11
12	n := fmt.Sprintf("error - %s", "foo")
13	_ = errors.New(n)
14}
15