blob: d97fb89f7c2b6746fcc47b667cee6acc26e88311 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package main
import (
"go/build"
"os"
)
// Tests that the Go compiler is at least version 1.2.
func main() {
for _, tag := range build.Default.ReleaseTags {
if tag == "go1.2" {
os.Exit(0)
}
}
os.Exit(1)
}
|