leaktestfe_disable.go 408 B

123456789101112131415161718192021222324
  1. // Copyright © 2021 Jeffrey H. Johnson <trnsz@pobox.com>
  2. // Copyright © 2021 Gridfinity, LLC.
  3. // Copyright © 2019 The Go Authors.
  4. //
  5. // All rights reserved.
  6. //
  7. // Use of this source code is governed by the BSD-style
  8. // license that can be found in the LICENSE file.
  9. //go:build !leaktest
  10. // +build !leaktest
  11. package leaktestfe
  12. import (
  13. "testing"
  14. )
  15. // Leakplug stub
  16. func Leakplug(
  17. _ *testing.T,
  18. ) {
  19. }