view bindings/go/conftest.go @ 107:a03ddd01be7e

resolve warnings
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Sun, 31 Jan 2016 17:34:49 +0900
parents 60c9769439b8
children
line wrap: on
line source

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)
}