blob: 88d4a9e515153f9e97c75fea8e431c7bd77cdc95 [file] [log] [blame]
package D1
import "fmt"
func example() {
fmt.Println(456, "!") // match
fmt.Println(456, "!") // match
fmt.Println(456, "!") // match
fmt.Println(100+20+3, "a"+"") // no match: constant expressions, but not basic literals
}