blob: 65dda47066f4eac62a56a73010e2b9d046d438dc [file] [log] [blame]
// run-pass
/// Tests access to the Unicode version constant.
pub fn main() {
check(std::char::UNICODE_VERSION);
}
pub fn check(unicode_version: (u8, u8, u8)) {
assert!(unicode_version.0 >= 10);
}