fix bug involving typed nil constants:
interface = (*int)(nil) is not the same as interface = nil. package main func main() { var x interface{} = (*int)(nil); println(x.(*int)); } R=ken OCL=31232 CL=31232
Showing
Please
register
or
sign in
to comment