rust/tests/ui/parser/utf8_idents-rpass.rs

40 lines
1.1 KiB
Rust
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

//@ run-pass
//
#![allow(non_snake_case)]
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 (абед + լանչ) >> غداء;
}