• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// +build linux
2
3package test_build_constraints
4
5import (
6	"runtime"
7	"testing"
8)
9
10func TestBarLinux(t *testing.T) {
11	if runtime.GOOS != "linux" {
12		t.Errorf("got %s; want linux", runtime.GOOS)
13	}
14}
15