]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/utf8_idents.rs
Auto merge of #28816 - petrochenkov:unistruct, r=nrc
[rust.git] / src / test / run-pass / utf8_idents.rs
1 // Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10 //
11
12 #![feature(non_ascii_idents)]
13
14 pub fn main() {
15     let ε = 0.00001f64;
16     let Π = 3.14f64;
17     let लंच = Π * Π + 1.54;
18     assert!(((लंच - 1.54) - (Π * Π)).abs() < ε);
19     assert_eq!(საჭმელად_გემრიელი_სადილი(), 0);
20 }
21
22 fn საჭმელად_გემრიელი_სადილი() -> isize {
23
24     // Lunch in several languages.
25
26     let ランチ = 10;
27     let 午餐 = 10;
28
29     let ארוחת_צהריי = 10;
30     let غداء = 10_usize;
31     let լանչ = 10;
32     let обед = 10;
33     let абед = 10;
34     let μεσημεριανό = 10;
35     let hádegismatur = 10;
36     let ручек = 10;
37
38     let ăn_trưa = 10;
39     let อาหารกลางวัน = 10;
40
41     // Lunchy arithmetic, mm.
42
43     assert_eq!(hádegismatur * ручек * обед, 1000);
44     assert_eq!(10, ארוחת_צהריי);
45     assert_eq!(ランチ + 午餐 + μεσημεριανό, 30);
46     assert_eq!(ăn_trưa + อาหารกลางวัน, 20);
47     return (абед + լանչ) >> غداء;
48 }