os-rust/src/test/run-pass/issues/issue-3389.rs

36 lines
1,020 B
Rust
Raw Normal View History

// 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 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// run-pass
#![allow(non_camel_case_types)]
2012-12-06 18:32:13 -08:00
struct trie_node {
content: Vec<String> ,
children: Vec<trie_node> ,
2012-12-06 18:32:13 -08:00
}
fn print_str_vector(vector: Vec<String> ) {
2015-01-31 12:20:46 -05:00
for string in &vector {
println!("{}", *string);
2012-12-06 18:32:13 -08:00
}
}
pub fn main() {
let mut node: trie_node = trie_node {
content: Vec::new(),
children: Vec::new()
2012-12-06 18:32:13 -08:00
};
let v = vec!["123".to_string(), "abc".to_string()];
node.content = vec!["123".to_string(), "abc".to_string()];
2012-12-06 18:32:13 -08:00
print_str_vector(v);
2013-03-15 18:27:15 -04:00
print_str_vector(node.content.clone());
2012-12-06 18:32:13 -08:00
}