]> git.lizzy.rs Git - rust.git/blob - tests/source/unicode.rs
Improve handling of unicode characters (#3618)
[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 }