summaryrefslogtreecommitdiffstats
path: root/src/os/exec/internal/fdtest/exists_windows.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/os/exec/internal/fdtest/exists_windows.go')
-rw-r--r--src/os/exec/internal/fdtest/exists_windows.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/os/exec/internal/fdtest/exists_windows.go b/src/os/exec/internal/fdtest/exists_windows.go
new file mode 100644
index 0000000..72b8ccf
--- /dev/null
+++ b/src/os/exec/internal/fdtest/exists_windows.go
@@ -0,0 +1,12 @@
+// Copyright 2021 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+//go:build windows
+
+package fdtest
+
+// Exists is not implemented on windows and panics.
+func Exists(fd uintptr) bool {
+ panic("unimplemented")
+}