mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
type alias check
This commit is contained in:

committed by
Alexander Medvednikov

parent
2e23592264
commit
fc33f9d49c
15
vlib/compiler/tests/type_alias_test.v
Normal file
15
vlib/compiler/tests/type_alias_test.v
Normal file
@ -0,0 +1,15 @@
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
||||
}
|
Reference in New Issue
Block a user