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

34 lines
974 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.
2012-12-06 20:32:13 -06:00
struct trie_node {
content: Vec<~str> ,
children: Vec<trie_node> ,
2012-12-06 20:32:13 -06:00
}
fn print_str_vector(vector: Vec<~str> ) {
for string in vector.iter() {
println!("{}", *string);
2012-12-06 20:32:13 -06:00
}
}
pub fn main() {
let mut node: trie_node = trie_node {
content: Vec::new(),
children: Vec::new()
2012-12-06 20:32:13 -06:00
};
2014-04-15 20:17:48 -05:00
let v = vec!("123".to_owned(), "abc".to_owned());
node.content = vec!("123".to_owned(), "abc".to_owned());
2012-12-06 20:32:13 -06:00
print_str_vector(v);
2013-03-15 17:27:15 -05:00
print_str_vector(node.content.clone());
2012-12-06 20:32:13 -06:00
}