]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-4366.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-4366.stderr
1 error[E0425]: cannot find function `foo` in this scope
2   --> $DIR/issue-4366.rs:28:29
3    |
4 LL |         fn sub() -> isize { foo(); 1 } //~ ERROR cannot find function `foo` in this scope
5    |                             ^^^ not found in this scope
6 help: possible candidates are found in other modules, you can import them into scope
7    |
8 LL |         use foo::foo;
9    |
10 LL |         use m1::foo;
11    |
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0425`.