Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for f6x (0.01 sec)

  1. test/typeparam/typelist.go

    }, B any, C interface{ *B }](x B) A {
    	panic(0)
    }
    func f5x() {
    	x := f5(1.2)
    	var _ float64 = x.b
    	var _ float64 = *x.c
    }
    
    func f6[A any, B interface{ ~struct{ f []A } }](B) A { panic(0) }
    func f6x() {
    	x := f6(struct{ f []string }{})
    	var _ string = x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 09:04:48 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. test/prove.go

    	if a < a { // ERROR "Disproved Less8U$"
    		return 140
    	}
    	return 151
    }
    
    func f6b(a uint8) int {
    	if a < a { // ERROR "Disproved Less8U$"
    		return 140
    	}
    	return 151
    }
    
    func f6x(a uint8) int {
    	if a > a { // ERROR "Disproved Less8U$"
    		return 143
    	}
    	return 151
    }
    
    func f6d(a uint8) int {
    	if a <= a { // ERROR "Proved Leq8U$"
    		return 146
    	}
    	return 151
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top