Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for UnsupportedTypeError (0.14 sec)

  1. src/encoding/xml/marshal_test.go

    			continue
    		}
    		if err.Error() != test.Err {
    			t.Errorf("#%d: marshal(%#v) = [error] %v, want %v", idx, test.Value, err, test.Err)
    		}
    		if test.Kind != reflect.Invalid {
    			if kind := err.(*UnsupportedTypeError).Type.Kind(); kind != test.Kind {
    				t.Errorf("#%d: marshal(%#v) = [error kind] %s, want %s", idx, test.Value, kind, test.Kind)
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
Back to top