Skip to content

Commit d75c408

Browse files
committed
ci: fix typeof_simple_types_test.v
1 parent 82c5621 commit d75c408

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

vlib/v/tests/typeof_simple_types_test.v

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ fn test_typeof_for_builtin_int_types() {
2626
assert typeof(u16(1)).name == 'u16'
2727
assert typeof(u32(1)).name == 'u32'
2828
assert typeof(u64(1)).name == 'u64'
29+
//
30+
assert typeof(byte(1)).name == 'byte'
31+
assert typeof(char(1)).name == 'char'
2932
}
3033

3134
fn test_typeof_for_builtin_float_types() {

0 commit comments

Comments
 (0)