Home | History | Annotate | Download | only in fmt

Lines Matching refs:Was

203 	{"2147483648\n", &int64Val, int64(2147483648)}, // was: integer overflow
288 {"%d\n", "28 \n", &intVal, 28}, // was: "unexpected newline"
289 {"%v", "0", &intVal, 0}, // was: "EOF"; 0 was taken as base prefix and not counted.
290 {"%v", "0", &uintVal, uint(0)}, // was: "EOF"; 0 was taken as base prefix and not counted.
771 // This was a buglet: we used to get "expected integer".
1266 // Test for issue 12090: Was unreading at EOF, double-scanning a byte.