Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for issue11687 (0.13 sec)

  1. src/internal/types/testdata/check/stmt0.go

    	switch x {
    	case 9223372036854775808 /* ERROR "overflows int" */ :
    	}
    	var y float64
    	switch y {
    	case 9223372036854775808:
    	}
    }
    
    func issue11687() {
    	f := func() (_, _ int) { return }
    	switch f /* ERROR "multiple-value f" */ () {
    	}
    	var x int
    	switch f /* ERROR "multiple-value f" */ () {
    	case x:
    	}
    	switch x {
    	case f /* ERROR "multiple-value f" */ ():
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. test/fixedbugs/issue13587.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test write barrier for implicit assignments to result parameters
    // that have escaped to the heap.
    
    package issue13587
    
    import "errors"
    
    func escape(p *error)
    
    func F() (err error) {
    	escape(&err)
    	return errors.New("error") // ERROR "write barrier"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 442 bytes
    - Viewed (0)
  3. test/fixedbugs/issue11987.go

    Emmanuel Odeke <******@****.***> 1460323946 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 621 bytes
    - Viewed (0)
  4. test/fixedbugs/issue21687.go

    Matthew Dempsky <******@****.***> 1504046432 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 18:10:17 UTC 2017
    - 940 bytes
    - Viewed (0)
  5. src/go/parser/testdata/issue11377.src

    Robert Griesemer <******@****.***> 1698787325 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 542 bytes
    - Viewed (0)
  6. test/fixedbugs/issue13684.go

    Emmanuel Odeke <******@****.***> 1460323946 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 317 bytes
    - Viewed (0)
  7. test/fixedbugs/issue11656.go

    Dmitri Shuralyov <******@****.***> 1697569678 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 700 bytes
    - Viewed (0)
  8. src/internal/types/testdata/fixedbugs/issue61685.go

    Robert Griesemer <******@****.***> 1702424416 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 14:32:38 UTC 2023
    - 343 bytes
    - Viewed (0)
  9. test/fixedbugs/issue11286.go

    Austin Clements <******@****.***> 1435073721 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 23 18:37:17 UTC 2015
    - 600 bytes
    - Viewed (0)
  10. src/internal/types/testdata/fixedbugs/issue51607.go

    Robert Griesemer <******@****.***> 1670366619 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top