]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/str-append.rs
Populate tree.
[rust.git] / src / test / run-pass / str-append.rs
1 // -*- rust -*-
2
3 fn main() {
4   let str s = "hello";
5   s += "world";
6   log s;
7   check(s.(9) == u8('d'));
8 }