]> git.lizzy.rs Git - rust.git/blob - tests/target/unicode.rs
handle unicode chars in closures (#3632)
[rust.git] / tests / target / unicode.rs
1 // rustfmt-wrap_comments: true
2
3 fn foo() {
4     let s = "this line goes to 100: ͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶͶ";
5     let s = 42;
6
7     // a comment of length 80, with the starting sigil: ҘҘҘҘҘҘҘҘҘҘ ҘҘҘҘҘҘҘҘҘҘҘҘҘҘ
8     let s = 42;
9 }
10
11 pub fn bar(config: &Config) {
12     let csv = RefCell::new(create_csv(config, "foo"));
13     {
14         let mut csv = csv.borrow_mut();
15         for (i1, i2, i3) in iproduct!(0..2, 0..3, 0..3) {
16             csv.write_field(format!("γ[{}.{}.{}]", i1, i2, i3)).unwrap();
17             csv.write_field(format!("d[{}.{}.{}]", i1, i2, i3)).unwrap();
18             csv.write_field(format!("i[{}.{}.{}]", i1, i2, i3)).unwrap();
19         }
20         csv.write_record(None::<&[u8]>).unwrap();
21     }
22 }
23
24 // The NotUnicode line is below 100 wrt chars but over it wrt String::len
25 fn baz() {
26     let our_error_b = result_b_from_func.or_else(|e| match e {
27         NotPresent => Err(e).chain_err(|| "env var wasn't provided"),
28         NotUnicode(_) => Err(e).chain_err(|| "env var was very very very bork文字化ã"),
29     });
30 }