Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for nsr (0.01 sec)

  1. src/internal/types/testdata/fixedbugs/issue50779.go

    package p
    
    type AC interface {
    	C
    }
    
    type ST []int
    
    type R[S any, P any] struct{}
    
    type SR = R[SS, ST]
    
    type SS interface {
    	NSR(any) *SR // ERROR "invalid use of type alias SR in recursive type"
    }
    
    type C interface {
    	NSR(any) *SR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 414 bytes
    - Viewed (0)
  2. src/internal/types/testdata/fixedbugs/issue50779a.go

    package p
    
    type AC interface {
    	C
    }
    
    type ST []int
    
    type R[S any, P any] struct{}
    
    type SR = R[SS, ST]
    
    type SS interface {
    	NSR(any) *SR
    }
    
    type C interface {
    	NSR(any) *SR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 20:18:45 UTC 2023
    - 356 bytes
    - Viewed (0)
Back to top