Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for issue28281b (0.15 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/internal/types/testdata/check/stmt1.go

    func parenPanic() int {
    	((((((panic)))(0))))
    }
    
    func issue23218a() int {
    	{
    		panic := func(interface{}){}
    		panic(0)
    	}
    } /* ERROR "missing return" */
    
    func issue23218b() int {
    	{
    		panic := func(interface{}){}
    		((((panic))))(0)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 3.3K bytes
    - Viewed (0)
Back to top