v/vlib/v/checker/tests/generics_too_many_parameter...

8 lines
88 B
V

fn foo<T>(b T) {
println(b)
}
fn main() {
foo<bool, int, bool, bool, int>(1)
}