rust/src/test/ui/issues/issue-7607-1.stderr

15 lines
443 B
Plaintext
Raw Normal View History

2018-07-15 21:11:54 +00:00
error[E0412]: cannot find type `Fo` in this scope
--> $DIR/issue-7607-1.rs:5:6
2018-07-15 21:11:54 +00:00
|
LL | impl Fo {
| ^^ help: a trait with a similar name exists: `Fn`
|
2020-06-12 02:31:49 +00:00
::: $SRC_DIR/core/src/ops/function.rs:LL:COL
|
LL | pub trait Fn<Args>: FnMut<Args> {
| ------------------------------- similarly named trait `Fn` defined here
2018-07-15 21:11:54 +00:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0412`.