Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for inlineText (0.07 sec)

  1. src/runtime/race/testdata/regression_test.go

    	a = 42
    	go func() {
    		_ = a
    		c <- 1
    	}()
    	return a, 10
    }
    
    func issue5431() {
    	var p **inltype
    	if inlinetest(p).x && inlinetest(p).y {
    	} else if inlinetest(p).x || inlinetest(p).y {
    	}
    }
    
    type inltype struct {
    	x, y bool
    }
    
    func inlinetest(p **inltype) *inltype {
    	return *p
    }
    
    type iface interface {
    	Foo() *struct{ b bool }
    }
    
    type Int int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 03 02:01:34 UTC 2015
    - 2.7K bytes
    - Viewed (0)
Back to top