rust/library/core/tests/unicode.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
122 B
Rust
Raw Normal View History

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