Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for issue62211G (0.09 sec)

  1. test/inline.go

    // statements could trip up phi insertion.
    func issue62211(x bool) { // ERROR "can inline issue62211"
    	if issue62211F(x) { // ERROR "inlining call to issue62211F"
    	}
    	if issue62211G(x) { // ERROR "inlining call to issue62211G"
    	}
    
    	// Initial fix CL caused a "non-monotonic scope positions" failure
    	// on code like this.
    	if z := 0; false {
    		panic(z)
    	}
    }
    
    func issue62211F(x bool) bool { // ERROR "can inline issue62211F"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.7K bytes
    - Viewed (0)
Back to top