// Copyright 2017 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. // run-pass use std::fmt::Display; fn check_display_eq(iter: &Vec) { let mut collected = String::new(); for it in iter { let disp = format!("{} ", it); collected.push_str(&disp); } assert_eq!("0 3 27 823 4891 1 0", collected.trim()); } fn main() { let i32_list_vec = vec![0i32, 3, 27, 823, 4891, 1, 0]; let u32_list_vec = vec![0u32, 3, 27, 823, 4891, 1, 0]; let str_list_vec = vec!["0", "3", "27", "823", "4891", "1", "0"]; check_display_eq(&i32_list_vec); check_display_eq(&u32_list_vec); check_display_eq(&str_list_vec); }