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
Alexander Medvednikov 81045023c4 run vfmt on scanner.v
2019-12-18 08:26:51 +03:00

16 lines
158 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
}