We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rust 1.9.0 panics on the following (wrong) code:
use std::io::BufRead; fn main() { let x = b"blabla blibli"; let s = &x[..]; let mut v = Vec::new(); s.read_line(&mut v) }
(but works fine with String::new() instead of Vec::new()).
String::new()
Vec::new()
The text was updated successfully, but these errors were encountered:
I'm pretty sure that this was fixed by #33852 and should work fine in nightly.
Sorry, something went wrong.
I have no way to run nightly on my machine, feel free to close if fixed.
jup, works fine on nightly: https://is.gd/UeG59L
Ok, sorry for the noise.
coretest::num::test_i32f64
No branches or pull requests
Rust 1.9.0 panics on the following (wrong) code:
(but works fine with
String::new()
instead ofVec::new()
).The text was updated successfully, but these errors were encountered: