v/vlib/v/checker/tests/incorrect_name_sum_type.vv

7 lines
105 B
V
Raw Normal View History

2020-05-16 16:12:23 +02:00
type integer = i8 | i16 | int | i64
type Integer = i8 | i16 | int | i64
fn (i Integer) type_name() {
}