1
Fork 0

Put all coretests in a separate crate

This commit is contained in:
bjorn3 2024-12-04 13:07:14 +00:00
parent c2270becb6
commit b6a3841942
163 changed files with 37 additions and 17 deletions

View file

@ -0,0 +1,5 @@
#[test]
pub fn version() {
let (major, _minor, _update) = core::char::UNICODE_VERSION;
assert!(major >= 10);
}