// 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 trie_node { mut content: ~[~str], mut children: ~[trie_node], } fn print_str_vector(vector: ~[~str]) { for vector.each() |string| { io::println(*string); } } fn main() { let node: trie_node = trie_node { content: ~[], children: ~[] }; let v = ~[~"123", ~"abc"]; node.content = ~[~"123", ~"abc"]; print_str_vector(v); print_str_vector(copy node.content); }