Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for issue23218b (0.27 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. test/fixedbugs/issue27518b.go

    Keith Randall <******@****.***> 1536704068 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 19:54:23 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue23203b.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)
  4. test/fixedbugs/issue23188.go

    Ian Lance Taylor <******@****.***> 1531254346 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 10 21:30:26 UTC 2018
    - 943 bytes
    - Viewed (0)
  5. test/fixedbugs/issue23298.go

    Kunpei Sakai <******@****.***> 1515870321 +0900
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 00:25:21 UTC 2018
    - 233 bytes
    - Viewed (0)
  6. test/fixedbugs/issue32187.go

    Matthew Dempsky <******@****.***> 1658112799 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 19 23:02:39 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. test/fixedbugs/issue29218.go

    Josh Bleecher Snyder <******@****.***> 1557853883 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:13:46 UTC 2019
    - 308 bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/issues0.go

    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