mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +00:00
20 lines
672 B
Plaintext
20 lines
672 B
Plaintext
error[E0107]: method takes 0 generic arguments but 1 generic argument was supplied
|
|
--> $DIR/effect_param.rs:9:9
|
|
|
|
|
LL | i8::checked_sub::<false>(42, 43);
|
|
| ^^^^^^^^^^^--------- help: remove these generics
|
|
| |
|
|
| expected 0 generic arguments
|
|
|
|
error[E0107]: method takes 0 generic arguments but 1 generic argument was supplied
|
|
--> $DIR/effect_param.rs:4:9
|
|
|
|
|
LL | i8::checked_sub::<true>(42, 43);
|
|
| ^^^^^^^^^^^-------- help: remove these generics
|
|
| |
|
|
| expected 0 generic arguments
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0107`.
|