Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for issue23218a (0.17 sec)

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

    		}
    		return
    	}
    	; ; ;
    } /* ERROR "missing return" */
    
    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)
  2. src/internal/types/testdata/fixedbugs/issue23203a.go

    Robert Griesemer <******@****.***> 1662082688 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 306 bytes
    - Viewed (0)
  3. 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