diff --git a/vlib/builtin/int_test.v b/vlib/builtin/int_test.v index cac4dc51f5..64866be44a 100644 --- a/vlib/builtin/int_test.v +++ b/vlib/builtin/int_test.v @@ -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 +}