1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/fn_param_name_cap.vv

9 lines
52 B
V

type Type = int
fn f(Type)
fn g[T](T v) {
}
g(5)