type alias check

This commit is contained in:
BigBlack 2019-12-15 03:01:20 +08:00 committed by Alexander Medvednikov
parent 2e23592264
commit fc33f9d49c
3 changed files with 30 additions and 4 deletions

View 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
}