ci: fix typeof_simple_types_test.v

Delyan Angelov 2022-04-15 21:22:32 +03:00 committed by Jef Roosens
parent 409fc2b1ee
commit 807038be66
Signed by: Jef Roosens
GPG Key ID: B75D4F293C7052DB
1 changed files with 3 additions and 0 deletions

View File

@ -26,6 +26,9 @@ fn test_typeof_for_builtin_int_types() {
assert typeof(u16(1)).name == 'u16'
assert typeof(u32(1)).name == 'u32'
assert typeof(u64(1)).name == 'u64'
//
assert typeof(byte(1)).name == 'byte'
assert typeof(char(1)).name == 'char'
}
fn test_typeof_for_builtin_float_types() {