Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for g25 (0.02 sec)

  1. test/live.go

    func f25(b bool) {
    	for i := 0; i < 2; i++ {
    		// Put in loop to make sure defer is not open-coded
    		defer g25()
    	}
    	if b {
    		return
    	}
    	var x string
    	x = g14()
    	printstring(x)
    	return
    }
    
    func g25()
    
    // non-escaping ... slices passed to function call should die on return,
    // so that the temporaries do not stack and do not cause ambiguously
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. test/live_regabi.go

    func f25(b bool) {
    	for i := 0; i < 2; i++ {
    		// Put in loop to make sure defer is not open-coded
    		defer g25()
    	}
    	if b {
    		return
    	}
    	var x string
    	x = g14()
    	printstring(x)
    	return
    }
    
    func g25()
    
    // non-escaping ... slices passed to function call should die on return,
    // so that the temporaries do not stack and do not cause ambiguously
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
Back to top