Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for a12 (0.01 sec)

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

    type (
    	_ interface {
    		M(P)
    	}
    
    	M interface {
    		F() P
    	}
    
    	P = interface {
    		I() M
    	}
    )
    
    // issue #8699
    type T12 /* ERROR "invalid recursive type" */ [len(a12)]int
    var a12 = makeArray()
    func makeArray() (res T12) { return }
    
    // issue #20770
    var r = newReader()
    func newReader() r // ERROR "r is not a type"
    
    // variations of the theme of #8699 and #20770
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/cycles5.go

    		M(P)
    	}
    
    	M interface {
    		F() P // ERROR "invalid use of type alias"
    	}
    
    	P = interface {
    		I() M
    	}
    )
    
    // issue #8699
    type T12 /* ERROR "invalid recursive type" */ [len(a12)]int
    var a12 = makeArray()
    func makeArray() (res T12) { return }
    
    // issue #20770
    var r = newReader()
    func newReader() r // ERROR "r is not a type"
    
    // variations of the theme of #8699 and #20770
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. src/syscall/dll_windows.go

    func Syscall12(trap, nargs, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12 uintptr) (r1, r2 uintptr, err Errno)
    
    // Deprecated: Use [SyscallN] instead.
    func Syscall15(trap, nargs, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15 uintptr) (r1, r2 uintptr, err Errno)
    
    // Deprecated: Use [SyscallN] instead.
    func Syscall18(trap, nargs, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15, a16, a17, a18 uintptr) (r1, r2 uintptr, err Errno)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top