2020-10-26 18:28:56 -05:00
|
|
|
error[E0425]: cannot find function `collect_primary` in this scope
|
|
|
|
--> $DIR/associated-fn-called-as-fn.rs:6:30
|
|
|
|
|
|
|
|
|
LL | '0'..='9' => collect_primary(&c),
|
2023-09-22 23:45:17 -05:00
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: you might have meant to call the associated function
|
|
|
|
|
|
|
|
|
LL | '0'..='9' => Self::collect_primary(&c),
|
|
|
|
| ++++++
|
2020-10-26 18:28:56 -05:00
|
|
|
|
|
|
|
error[E0425]: cannot find function `collect_primary` in this scope
|
|
|
|
--> $DIR/associated-fn-called-as-fn.rs:23:30
|
|
|
|
|
|
|
|
|
LL | '0'..='9' => collect_primary(&c),
|
2023-09-22 23:45:17 -05:00
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: you might have meant to call the associated function
|
|
|
|
|
|
|
|
|
LL | '0'..='9' => Self::collect_primary(&c),
|
|
|
|
| ++++++
|
2020-10-26 18:28:56 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0425`.
|