blob: b7eaad57043838f6b3e4d2b5bf5f3856b826670d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
error[E0049]: method `foo` has 0 type parameters but its trait declaration has 1 type parameter
--> $DIR/E0049.rs:18:5
|
LL | fn foo<T: Default>(x: T) -> Self;
| --------------------------------- expected 1 type parameter
...
LL | fn foo(x: bool) -> Self { Bar } //~ ERROR E0049
| ^^^^^^^^^^^^^^^^^^^^^^^ found 0 type parameters
error: aborting due to previous error
For more information about this error, try `rustc --explain E0049`.
|