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
119 B
Rust
Raw Normal View History

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