summaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue44415.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/issue44415.go')
-rw-r--r--test/fixedbugs/issue44415.go21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/fixedbugs/issue44415.go b/test/fixedbugs/issue44415.go
deleted file mode 100644
index 26820a9f09..0000000000
--- a/test/fixedbugs/issue44415.go
+++ /dev/null
@@ -1,21 +0,0 @@
-// compile
-
-// 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.
-
-// +build windows
-
-package p
-
-import (
- "syscall"
- "unsafe"
-)
-
-var dllKernel = syscall.NewLazyDLL("Kernel32.dll")
-
-func Call() {
- procLocalFree := dllKernel.NewProc("LocalFree")
- defer procLocalFree.Call(uintptr(unsafe.Pointer(nil)))
-}