Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for foo75aesc1 (0.2 sec)

  1. test/escape2.go

    }
    
    func foo75esc(z *int) { // ERROR "leaking param: z$"
    	gxx = myprint(z, 1, 2, 3) // ERROR "1 does not escape" "2 does not escape" "3 does not escape" "... argument does not escape$"
    }
    
    func foo75aesc(z *int) { // ERROR "z does not escape$"
    	var ppi **interface{}       // assignments to pointer dereferences lose track
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  2. test/escape2n.go

    }
    
    func foo75esc(z *int) { // ERROR "leaking param: z$"
    	gxx = myprint(z, 1, 2, 3) // ERROR "1 does not escape" "2 does not escape" "3 does not escape" "... argument does not escape$"
    }
    
    func foo75aesc(z *int) { // ERROR "z does not escape$"
    	var ppi **interface{}       // assignments to pointer dereferences lose track
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
Back to top