Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for nosuchpkg (0.09 sec)

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

    	}
    	type _ interface {
    		nosuchtype /* ERROR "undefined: nosuchtype" */
    	}
    	type _ interface {
    		fmt.Nosuchtype /* ERROR "undefined: fmt.Nosuchtype" */
    	}
    	type _ interface {
    		nosuchpkg /* ERROR "undefined: nosuchpkg" */ .Nosuchtype
    	}
    	type I interface {
    		I.m /* ERROR "I.m is not a type" */
    		m()
    	}
    }
    
    // issue11347
    // These should not crash.
    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