Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for issue9473 (0.2 sec)

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

    	_ = Point{x: 1, y: 2}
    }
    
    func f0() (a []int)         { return }
    func f1() (a []int, b int)  { return }
    func f2() (a, b []int)      { return }
    
    func append_([]int, ...int) {}
    
    func issue9473(a []int, b ...int) {
    	// variadic builtin function
    	_ = append(f0())
    	_ = append(f0(), f0()...)
    	_ = append(f1())
    	_ = append(f2 /* ERRORx `cannot use .* in argument` */ ())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testgodefs/testdata/issue8478.go

    //go:build ignore
    
    package main
    
    // Issue 8478.  Test that void* is consistently mapped to *byte.
    
    /*
    typedef struct {
    	void *p;
    	void **q;
    	void ***r;
    } s;
    */
    import "C"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 351 bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue49735.go

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

    Keith Randall <******@****.***> 1570408719 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 07 17:19:13 UTC 2019
    - 1K bytes
    - Viewed (0)
  5. test/fixedbugs/issue39472.go

    Michael Munday <******@****.***> 1591697837 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 10 14:55:29 UTC 2020
    - 250 bytes
    - Viewed (0)
  6. test/fixedbugs/issue24763.go

    Robert Griesemer <******@****.***> 1530139109 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 28 23:01:22 UTC 2018
    - 446 bytes
    - Viewed (0)
  7. test/fixedbugs/issue9738.go

    Shenghou Ma <******@****.***> 1422690656 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 02 14:14:21 UTC 2015
    - 302 bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/issue4273.c

    Austin Clements <******@****.***> 1683224724 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 320 bytes
    - Viewed (0)
  9. test/fixedbugs/issue24173.go

    Matthew Dempsky <******@****.***> 1519845725 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 20:18:37 UTC 2018
    - 381 bytes
    - Viewed (0)
  10. test/fixedbugs/issue8475.go

    Emmanuel Odeke <******@****.***> 1460323946 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 422 bytes
    - Viewed (0)
Back to top