rust/src/test/ui/utf8_idents-rpass.rs

42 lines
1.1 KiB
Rust
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// run-pass
//
#![allow(non_snake_case)]
#![feature(non_ascii_idents)]
pub fn main() {
let ε = 0.00001f64;
let Π = 3.14f64;
let = Π * Π + 1.54;
assert!((( - 1.54) - (Π * Π)).abs() < ε);
assert_eq!(_გემრიელი_სადილი(), 0);
}
fn _გემრიელი_სადილი() -> isize {
// Lunch in several languages.
let = 10;
let = 10;
let ארוחת_צהריי = 10;
let غداء = 10_usize;
let լանչ = 10;
let обед = 10;
let абед = 10;
let μεσημεριανό = 10;
let hádegismatur = 10;
let ручек = 10;
let ăn_trưa = 10;
let = 10;
// Lunchy arithmetic, mm.
assert_eq!(hádegismatur * ручек * обед, 1000);
assert_eq!(10, ארוחת_צהריי);
assert_eq!( + + μεσημεριανό, 30);
assert_eq!(ăn_trưa + , 20);
return (абед + լանչ) >> غداء;
}