rust/library/core/tests/unicode.rs

6 lines
122 B
Rust
Raw Normal View History

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