Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for issue45928 (0.15 sec)

  1. test/prove.go

    	return
    }
    
    func issue51622(b []byte) int {
    	if len(b) >= 3 && b[len(b)-3] == '#' { // ERROR "Proved IsInBounds$"
    		return len(b)
    	}
    	return 0
    }
    
    func issue45928(x int) {
    	combinedFrac := x / (x | (1 << 31)) // ERROR "Proved Neq64$"
    	useInt(combinedFrac)
    }
    
    //go:noinline
    func useInt(a int) {
    }
    
    //go:noinline
    func useSlice(a []int) {
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. test/fixedbugs/issue4562.go

    func expectError(expectLine int) {
    	if recover() == nil {
    		panic("did not crash")
    	}
    	for i := 1;; i++ {
    		_, file, line, ok := runtime.Caller(i)
    		if !ok {
    			panic("cannot find issue4562.go on stack")
    		}
    		if strings.HasSuffix(file, "issue4562.go") {
    			if line != expectLine {
    				panic(fmt.Sprintf("crashed at line %d, wanted line %d", line, expectLine))
    			}
    			break
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 881 bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue45985.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package issue45985
    
    func app[S interface{ ~[]T }, T any](s S, e T) S {
    	return append(s, e)
    }
    
    func _() {
    	_ = app /* ERROR "S (type int) does not satisfy interface{~[]T}" */ [int] // TODO(gri) better error message
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 22:48:09 UTC 2023
    - 377 bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue45920.go

    Robert Griesemer <******@****.***> 1670545237 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 592 bytes
    - Viewed (0)
  5. test/fixedbugs/issue45948.go

    Than McIntosh <******@****.***> 1620159536 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 05 01:47:58 UTC 2021
    - 307 bytes
    - Viewed (0)
  6. test/fixedbugs/issue47928.go

    Matthew Dempsky <******@****.***> 1629790350 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 24 18:02:21 UTC 2021
    - 386 bytes
    - Viewed (0)
  7. src/internal/types/testdata/fixedbugs/issue49592.go

    Robert Griesemer <******@****.***> 1662082688 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 235 bytes
    - Viewed (0)
  8. test/typeparam/issue45738.go

    Matthew Dempsky <******@****.***> 1646087539 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 290 bytes
    - Viewed (0)
  9. test/fixedbugs/issue45323.go

    Keith Randall <******@****.***> 1617260334 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 02 05:24:14 UTC 2021
    - 346 bytes
    - Viewed (0)
  10. test/fixedbugs/issue45913.go

    Cuong Manh Le <******@****.***> 1619983150 +0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 03 15:03:57 UTC 2021
    - 389 bytes
    - Viewed (0)
Back to top