Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for mapAppendAssignmentInt32 (0.36 sec)

  1. test/codegen/mapaccess.go

    	sinkAppend, m[k] = !sinkAppend, append(m[k], 99)
    
    	// 386:".*mapaccess"
    	// amd64:".*mapaccess"
    	// arm:".*mapaccess"
    	// arm64:".*mapaccess"
    	m[k] = append(m[k+1], 100)
    }
    
    func mapAppendAssignmentInt32() {
    	m := make(map[int32][]int32, 0)
    	var k int32 = 0
    
    	// 386:-".*mapaccess"
    	// amd64:-".*mapaccess"
    	// arm:-".*mapaccess"
    	// arm64:-".*mapaccess"
    	m[k] = append(m[k], 1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 17:36:38 UTC 2022
    - 9.1K bytes
    - Viewed (0)
Back to top