rust/tests/ui/cross-crate/auxiliary/cci_impl_lib.rs
2023-01-11 09:32:08 +00:00

17 lines
331 B
Rust

#![crate_name="cci_impl_lib"]
pub trait uint_helpers {
fn to<F>(&self, v: usize, f: F) where F: FnMut(usize);
}
impl uint_helpers for usize {
#[inline]
fn to<F>(&self, v: usize, mut f: F) where F: FnMut(usize) {
let mut i = *self;
while i < v {
f(i);
i += 1;
}
}
}