1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/compiler/tests/type_alias_test.v
2019-12-14 22:01:20 +03:00

15 lines
157 B
V

type Myint int
type Myf32 f32
type Myf64 f64
fn test_type_alias() {
i := Myint(10)
assert i + 100 == 110
f := Myf32(1.0)
assert f + 3.14 == 4.14
}