]> git.lizzy.rs Git - rust.git/blob - tests/ui/string_extend.rs
Add license header to Rust files
[rust.git] / tests / ui / string_extend.rs
1 // Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution.
3 //
4 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
7 // option. This file may not be copied, modified, or distributed
8 // except according to those terms.
9
10
11 #[derive(Copy, Clone)]
12 struct HasChars;
13
14 impl HasChars {
15     fn chars(self) -> std::str::Chars<'static> {
16         "HasChars".chars()
17     }
18 }
19
20 fn main() {
21     let abc = "abc";
22     let def = String::from("def");
23     let mut s = String::new();
24
25     s.push_str(abc);
26     s.extend(abc.chars());
27
28     s.push_str("abc");
29     s.extend("abc".chars());
30
31     s.push_str(&def);
32     s.extend(def.chars());
33
34     s.extend(abc.chars().skip(1));
35     s.extend("abc".chars().skip(1));
36     s.extend(['a', 'b', 'c'].iter());
37
38     let f = HasChars;
39     s.extend(f.chars());
40 }