1 2 3 4 5 6 7 8 9
// run-pass static X: bool = 'a'.is_ascii(); static Y: bool = 'ä'.is_ascii(); fn main() { assert!(X); assert!(!Y); }