v/vlib/v/checker/tests/cannot_cast_to_alias.vv

8 lines
65 B
V

module main
type MyType = string
fn main() {
_ := MyType(5)
}