-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Closed
Labels
E-needs-testCall for participation: An issue has been fixed and does not reproduce, but no test has been added.Call for participation: An issue has been fixed and does not reproduce, but no test has been added.
Description
Code to produce
pub mod bits {
use std::vec;
use std::uint;
struct BitVector<'self> {
v: &'self [u8]
}
pub fn new(n: u64) -> BitVector<'self> {
let f = vec::with_capacity::<u8>(n);
BitVector {
v: f
}
}
}
fn main() {
let f = bits::new(10);
}
Backtrace is here https://gist.github.com/5864573
Metadata
Metadata
Assignees
Labels
E-needs-testCall for participation: An issue has been fixed and does not reproduce, but no test has been added.Call for participation: An issue has been fixed and does not reproduce, but no test has been added.