Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for issue28281c (0.14 sec)

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

    // (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)
    func issue28281e(a, b, c  ... /* ERROR "can only use ... with final parameter" */ int, d 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)
  2. src/internal/types/testdata/fixedbugs/issue28251.go

    // license that can be found in the LICENSE file.
    
    // This file contains test cases for various forms of
    // method receiver declarations, per the spec clarification
    // https://golang.org/cl/142757.
    
    package issue28251
    
    // test case from issue28251
    type T struct{}
    
    type T0 = *T
    
    func (T0) m() {}
    
    func _() { (&T{}).m() }
    
    // various alternative forms
    type (
            T1 = (((T)))
    )
    
    func ((*(T1))) m1() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. test/fixedbugs/issue22881.go

    Vladimir Kuzmin <******@****.***> 1521015403 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 20 01:47:07 UTC 2018
    - 2K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/test.go

    static int f29748(S29748 *p) { return 0; }
    
    // issue 29781
    // Error with newline inserted into constant expression.
    // Compilation test only, nothing to run.
    
    static void issue29781F(char **p, int n) {}
    #define ISSUE29781C 0
    
    // issue 31093
    static uint16_t issue31093F(uint16_t v) { return v; }
    
    // issue 32579
    typedef struct S32579 { unsigned char data[1]; } S32579;
    
    // issue 37033, cgo.Handle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top