We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82c5621 commit d75c408Copy full SHA for d75c408
vlib/v/tests/typeof_simple_types_test.v
@@ -26,6 +26,9 @@ fn test_typeof_for_builtin_int_types() {
26
assert typeof(u16(1)).name == 'u16'
27
assert typeof(u32(1)).name == 'u32'
28
assert typeof(u64(1)).name == 'u64'
29
+ //
30
+ assert typeof(byte(1)).name == 'byte'
31
+ assert typeof(char(1)).name == 'char'
32
}
33
34
fn test_typeof_for_builtin_float_types() {
0 commit comments