Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sehf1 (0.03 sec)

  1. src/runtime/runtime-seh_windows_test.go

    	}
    	return pcs[:n]
    }
    
    // SEH unwinding does not report inlined frames.
    //
    //go:noinline
    func sehf3(pan bool) []uintptr {
    	return sehf4(pan)
    }
    
    //go:noinline
    func sehf4(pan bool) []uintptr {
    	var pcs []uintptr
    	if pan {
    		panic("sehf4")
    	}
    	pcs = sehCallers()
    	return pcs
    }
    
    func testSehCallersEqual(t *testing.T, pcs []uintptr, want []string) {
    	t.Helper()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 16:52:06 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/typeinst0.go

    // Parameterized types containing parameterized types
    
    type T3[P any] List[P]
    
    var _ T3[int] = T3[int](List[int]{1, 2, 3})
    
    // Self-recursive generic types are not permitted
    
    type self1[P any] self1 /* ERROR "invalid recursive type" */ [P]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 02:54:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top