Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Plark (0.06 sec)

  1. src/cmd/compile/internal/inline/inlheur/testdata/props/returns2.go

    	// Similar to the case above, return from call returning concrete type
    	// feeds directly into interface call. Note that only the first
    	// iface call is interesting here.
    	newBar(10).Plark().Plark()
    }
    
    func returnsFunc(x int) func(int) int {
    	if x < 0 {
    		G++
    	}
    	return adder
    }
    
    func returnsFunc2() func(int) int {
    	return func(x int) int {
    		return adder(x)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:01 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/inline/inlheur/testdata/props/funcflags.go

    // <endcallsites>
    // <endfuncpreamble>
    func T_forloops3(x int) {
    	for i := 0; i < 101; i++ {
    		println("blah")
    		if true {
    			continue
    		}
    		panic("plark")
    	}
    	for i := range [10]int{} {
    		println(i)
    		panic("plark")
    	}
    	panic("whatev")
    }
    
    // funcflags.go T_hasgotos 215 0 1
    // <endpropsdump>
    // {"Flags":0,"ParamFlags":[0,0],"ResultFlags":null}
    // <endcallsites>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:01 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top