ci: add test_byte_vs_u8 to int_test.v

Delyan Angelov 2022-04-15 21:42:07 +03:00 committed by Jef Roosens
parent 807038be66
commit 0fd92699e7
Signed by: Jef Roosens
GPG Key ID: B75D4F293C7052DB
1 changed files with 6 additions and 0 deletions

View File

@ -253,3 +253,9 @@ fn test_repeat() {
assert b.repeat(1) == b.ascii_str()
assert b.repeat(0) == ''
}
fn test_byte_vs_u8() {
b := byte(1)
u := u8(1)
assert b == u
}