rustc/library/core/tests/unicode.rs
2022-12-15 21:37:53 +01:00

6 lines
119 B
Rust

#[test]
pub fn version() {
let (major, _minor, _update) = core::char::UNICODE_VERSION;
assert!(major >= 10);
}