Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Test26213 (0.28 sec)

  1. src/cmd/cgo/internal/test/issue26213/test26213.go

    // 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
    Go
    - Registered: Tue Mar 26 11:13:08 GMT 2024
    - Last Modified: Fri May 12 12:00:02 GMT 2023
    - 835 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/cgo_test.go

    func Test24206(t *testing.T)                 { test24206(t) }
    func Test25143(t *testing.T)                 { test25143(t) }
    func Test26066(t *testing.T)                 { test26066(t) }
    func Test26213(t *testing.T)                 { test26213(t) }
    func Test27660(t *testing.T)                 { test27660(t) }
    func Test28896(t *testing.T)                 { test28896(t) }
    func Test30065(t *testing.T)                 { test30065(t) }
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed May 17 21:53:11 GMT 2023
    - 6.4K bytes
    - Viewed (0)
Back to top