blob: 7e9b9e8efb9a815fd4586501459accfdd3dcf444 (
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:8:5
|
LL | fn foo<T: Default>(x: T) -> Self;
| --------------------------------- expected 1 type parameter
...
LL | fn foo(x: bool) -> Self { Bar }
| ^^^^^^^^^^^^^^^^^^^^^^^ found 0 type parameters
error: aborting due to previous error
For more information about this error, try `rustc --explain E0049`.
|