v/vlib/v/parser/tests/fn_param_name_cap.vv

11 lines
60 B
V

type Type = int
// OK
fn f(Type)
fn g<T>(T v) {
}
g(5)