rust/library/core/tests/unicode.rs

6 lines
119 B
Rust
Raw Normal View History

#[test]
pub fn version() {
2022-04-29 17:35:11 -05:00
let (major, _minor, _update) = core::char::UNICODE_VERSION;
assert!(major >= 10);
}