1// +build ignore
2
3package I1
4
5import "fmt"
6
7func example() {
8	temp := 5
9	fmt.Print(temp + temp + temp)
10}
11