aboutsummaryrefslogtreecommitdiff
path: root/misc/cgo/test/issue26213/test26213.go
diff options
context:
space:
mode:
Diffstat (limited to 'misc/cgo/test/issue26213/test26213.go')
-rw-r--r--misc/cgo/test/issue26213/test26213.go46
1 files changed, 0 insertions, 46 deletions
diff --git a/misc/cgo/test/issue26213/test26213.go b/misc/cgo/test/issue26213/test26213.go
deleted file mode 100644
index 5d1f637ff9..0000000000
--- a/misc/cgo/test/issue26213/test26213.go
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright 2018 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.
-
-package issue26213
-
-/*
-#include "jni.h"
-*/
-import "C"
-import (
- "testing"
-)
-
-func Test26213(t *testing.T) {
- var x1 C.jobject = 0 // Note: 0, not nil. That makes sure we use uintptr for these types.
- _ = x1
- var x2 C.jclass = 0
- _ = x2
- var x3 C.jthrowable = 0
- _ = x3
- var x4 C.jstring = 0
- _ = x4
- var x5 C.jarray = 0
- _ = x5
- var x6 C.jbooleanArray = 0
- _ = x6
- var x7 C.jbyteArray = 0
- _ = x7
- var x8 C.jcharArray = 0
- _ = x8
- var x9 C.jshortArray = 0
- _ = x9
- var x10 C.jintArray = 0
- _ = x10
- var x11 C.jlongArray = 0
- _ = x11
- var x12 C.jfloatArray = 0
- _ = x12
- var x13 C.jdoubleArray = 0
- _ = x13
- var x14 C.jobjectArray = 0
- _ = x14
- var x15 C.jweak = 0
- _ = x15
-}