aboutsummaryrefslogtreecommitdiff
path: root/go/ssa/testdata/src/context/context.go
diff options
context:
space:
mode:
Diffstat (limited to 'go/ssa/testdata/src/context/context.go')
-rw-r--r--go/ssa/testdata/src/context/context.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/go/ssa/testdata/src/context/context.go b/go/ssa/testdata/src/context/context.go
new file mode 100644
index 000000000..d4f6c256c
--- /dev/null
+++ b/go/ssa/testdata/src/context/context.go
@@ -0,0 +1,7 @@
+package context
+
+type Context interface {
+ Done() <-chan struct{}
+}
+
+func Background() Context