Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for exportbyte (0.08 sec)

  1. src/cmd/cgo/internal/test/testx.go

    	issue1560Ch <- true
    }
    
    func test1560(t *testing.T) {
    	go Issue1560FromGo()
    	go C.Issue1560InC()
    	<-issue1560Ch
    	<-issue1560Ch
    }
    
    // issue 2462
    
    //export exportbyte
    func exportbyte() byte {
    	return 0
    }
    
    //export exportbool
    func exportbool() bool {
    	return false
    }
    
    //export exportrune
    func exportrune() rune {
    	return 0
    }
    
    //export exporterror
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top