1#### Note: this error code is no longer emitted by the compiler.23Too many type arguments were supplied for a function. For example:45```compile_fail,E01076fn foo<T>() {}78fn main() {9 foo::<f64, bool>(); // error: wrong number of type arguments:10 // expected 1, found 211}12```1314The number of supplied arguments must exactly match the number of defined type15parameters.
Findings
✓ No findings reported for this file.