Open
Description
First, create empty lib crate.
cargo init --lib foo
With use crate::foo::bar
:
//! Hello
//!
//! ```
//! use crate::foo::bar;
//! bar();
//! ```
#[cfg(doctest)]
pub fn bar ()
{
println!("hello");
}
Compiling foo v0.1.0 (/home/user/tmp/foo)
Finished test [unoptimized + debuginfo] target(s) in 0.01s
Running target/debug/deps/foo-d4d7a4ec5556181e
running 0 tests
test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out
Doc-tests foo
running 1 test
test src/lib.rs - (line 3) ... FAILED
failures:
---- src/lib.rs - (line 3) stdout ----
error[E0432]: unresolved import `crate::foo::bar`
--> src/lib.rs:4:5
|
4 | use crate::foo::bar;
| ^^^^^^^^^^^^^^^ no `bar` in the root
error: aborting due to previous error
For more information about this error, try `rustc --explain E0432`.
Couldn't compile the test.
failures:
src/lib.rs - (line 3)
test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out
error: test failed, to rerun pass '--doc'
With use foo::bar
:
//! Hello
//!
//! ```
//! use foo::bar;
//! bar();
//! ```
#[cfg(doctest)]
pub fn bar ()
{
println!("hello");
}
Compiling foo v0.1.0 (/home/user/tmp/foo)
Finished test [unoptimized + debuginfo] target(s) in 0.24s
Running target/debug/deps/foo-d4d7a4ec5556181e
running 0 tests
test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out
Doc-tests foo
running 1 test
test src/lib.rs - (line 3) ... FAILED
failures:
---- src/lib.rs - (line 3) stdout ----
error[E0432]: unresolved import `foo::bar`
--> src/lib.rs:4:5
|
4 | use foo::bar;
| ^^^^^^^^ no `bar` in the root
error: aborting due to previous error
For more information about this error, try `rustc --explain E0432`.
Couldn't compile the test.
failures:
src/lib.rs - (line 3)
test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out
error: test failed, to rerun pass '--doc'
//! Hello
//!
//! ```
//! use crate::bar;
//! bar();
//! ```
#[cfg(doctest)]
pub fn bar ()
{
println!("hello");
}
With use crate::bar
:
Compiling foo v0.1.0 (/home/user/tmp/foo)
Finished test [unoptimized + debuginfo] target(s) in 0.23s
Running target/debug/deps/foo-d4d7a4ec5556181e
running 0 tests
test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out
Doc-tests foo
running 1 test
test src/lib.rs - (line 3) ... FAILED
failures:
---- src/lib.rs - (line 3) stdout ----
error[E0432]: unresolved import `crate::bar`
--> src/lib.rs:4:5
|
3 | use crate::bar;
| ^^^^^^^^^^ no `bar` in the root
error: aborting due to previous error
For more information about this error, try `rustc --explain E0432`.
Couldn't compile the test.
failures:
src/lib.rs - (line 3)
test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out
error: test failed, to rerun pass '--doc'
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
No status