| commit | afc22ee9133171570a267463982b542fb3edff5a | [log] [tgz] |
|---|---|---|
| author | Brad Fitzpatrick <bradfitz@golang.org> | Tue Mar 08 00:20:11 2016 +0000 |
| committer | Brad Fitzpatrick <bradfitz@golang.org> | Tue Apr 05 00:08:57 2016 +0000 |
| tree | 0e7abd8bebaa2a51fd46cfb8866fe3cccc3b40fc | |
| parent | 024ed629fd292398cfd43c9678a5bf004f7defdc [diff] [blame] |
context: implement in terms of the standard library for Go 1.7+ See https://golang.org/cl/20346 Updates golang/go#14660 Change-Id: Ia974e70cdcb240ae1df0018a07595c4d1dcd422a Reviewed-on: https://go-review.googlesource.com/20347 Reviewed-by: Sameer Ajmani <sameer@golang.org> Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
diff --git a/context/context_test.go b/context/context_test.go index 05345fc..fa73096 100644 --- a/context/context_test.go +++ b/context/context_test.go
@@ -2,6 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// +build !go1.7 + package context import (