Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for issue28281b (0.11 sec)

  1. 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)
  2. 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)
  3. 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