v2 / vlib / v / checker / tests / cannot_cast_to_alias.vv
7 lines · 5 sloc · 65 bytes · d5a421e3f5add133598cef6596d01ff3fe89abb3
Raw
1module main
2
3type MyType = string
4
5fn main() {
6 _ := MyType(5)
7}
8