Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestDisappearingDefer (0.19 sec)

  1. src/runtime/defer_test.go

    		}
    	}
    	panic("testConditional")
    }
    
    // Test that there is no compile-time or run-time error if an open-coded defer
    // call is removed by constant propagation and dead-code elimination.
    func TestDisappearingDefer(t *testing.T) {
    	switch runtime.GOOS {
    	case "invalidOS":
    		defer func() {
    			t.Fatal("Defer shouldn't run")
    		}()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:57:24 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top