Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for issue23218a (0.23 sec)

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

    	0: {},
    }
    
    var issue22467 = map[int][... /* ERROR "invalid use of [...] array" */ ]int{0: {}}
    
    // Test that invalid use of ... in parameter lists is recognized
    // (issue #28281).
    func issue28281a(int, int, ...int)
    func issue28281b(a, b int, c ...int)
    func issue28281c(a, b, c ... /* ERROR "can only use ... with final parameter" */ int)
    func issue28281d(... /* ERROR "can only use ... with final parameter" */ int, int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top