]> git.lizzy.rs Git - rust.git/blob - tests/source/unicode.rs
fix internal error for long closure types (#3653)
[rust.git] / tests / source / 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))
17                 .unwrap();
18             csv.write_field(format!("d[{}.{}.{}]", i1, i2, i3))
19                 .unwrap();
20             csv.write_field(format!("i[{}.{}.{}]", i1, i2, i3))
21                 .unwrap();
22         }
23         csv.write_record(None::<&[u8]>).unwrap();
24     }
25 }
26
27 // The NotUnicode line is below 100 wrt chars but over it wrt String::len
28 fn baz() {
29     let our_error_b = result_b_from_func.or_else(|e| match e {
30         NotPresent => Err(e).chain_err(|| "env var wasn't provided"),
31         NotUnicode(_) => Err(e).chain_err(|| "env var was very very very bork文字化ã"),
32     });
33 }