2018-02-07 19:35:35 -08:00
|
|
|
error[E0049]: method `foo` has 0 type parameters but its trait declaration has 1 type parameter
|
|
|
|
--> $DIR/E0049.rs:18:5
|
|
|
|
|
|
|
|
|
12 | fn foo<T: Default>(x: T) -> Self;
|
|
|
|
| --------------------------------- expected 1 type parameter
|
|
|
|
...
|
|
|
|
18 | fn foo(x: bool) -> Self { Bar } //~ ERROR E0049
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ found 0 type parameters
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-02-19 21:40:25 +01:00
|
|
|
If you want more information on this error, try using "rustc --explain E0049"
|