rust/src/test/ui/export-fully-qualified.stderr

10 lines
400 B
Plaintext
Raw Normal View History

error[E0433]: failed to resolve: use of undeclared type or module `foo`
2018-12-25 09:56:47 -06:00
--> $DIR/export-fully-qualified.rs:6:20
2018-08-08 07:28:26 -05:00
|
LL | pub fn bar() { foo::baz(); } //~ ERROR failed to resolve: use of undeclared type or module `foo`
| ^^^ use of undeclared type or module `foo`
2018-08-08 07:28:26 -05:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0433`.