64ac736ec5
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
17 lines
219 B
Go
17 lines
219 B
Go
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)
|
|
}
|