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

8 lines
88 B
V
Raw Normal View History

2021-04-02 16:27:54 +02:00
fn foo<T>(b T) {
println(b)
}
fn main() {
foo<bool, int, bool, bool, int>(1)
}