Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for bad32 (0.03 sec)

  1. doc/go_spec.html

    type Bad interface {
    	Bad
    }
    
    // illegal: Bad1 may not embed itself using Bad2
    type Bad1 interface {
    	Bad2
    }
    type Bad2 interface {
    	Bad1
    }
    
    // illegal: Bad3 may not embed a union containing Bad3
    type Bad3 interface {
    	~int | ~string | Bad3
    }
    
    // illegal: Bad4 may not embed an array containing Bad4 as element type
    type Bad4 interface {
    	[10]Bad4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top