summaryrefslogtreecommitdiffstats
path: root/library/core/tests/unicode.rs
blob: bbace0ef66ca32940e71261745d7fccdd430fcf7 (plain)
1
2
3
4
5
#[test]
pub fn version() {
    let (major, _minor, _update) = core::char::UNICODE_VERSION;
    assert!(major >= 10);
}