// Copyright 2012 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. struct S { a: T, b: uint, } fn range_(lo: uint, hi: uint, mut it: F) where F: FnMut(uint) { let mut lo_ = lo; while lo_ < hi { it(lo_); lo_ += 1u; } } fn create_index(_index: Vec> , _hash_fn: extern fn(T) -> uint) { range_(0u, 256u, |_i| { let _bucket: Vec = Vec::new(); }) } pub fn main() { }