Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for bufferNoEscape2 (0.38 sec)

  1. test/fixedbugs/issue7921.go

    	b.Write([]byte{'4'}) // ERROR "\[\]byte{...} does not escape$"
    	return b.String()    // ERROR "inlining call to bytes.\(\*Buffer\).String$" "string\(bytes.b.buf\[bytes.b.off:\]\) escapes to heap$"
    }
    
    func bufferNoEscape2(xs []string) int { // ERROR "xs does not escape$"
    	b := bytes.NewBuffer(make([]byte, 0, 64)) // ERROR "&bytes.Buffer{...} does not escape$" "make\(\[\]byte, 0, 64\) does not escape$" "inlining call to bytes.NewBuffer$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 19:43:26 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top