Make ui test that are run-pass and do not test the compiler itself library tests

This commit is contained in:
Christiaan Dirkx 2020-11-22 09:08:04 +01:00
parent 349b3b324d
commit be554c4101
38 changed files with 812 additions and 820 deletions

View file

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