mirror of https://github.com/rust-lang/rust
18 lines
330 B
Rust
18 lines
330 B
Rust
//@ check-pass
|
|
//@ compile-flags:--test
|
|
//@ normalize-stdout-test: "finished in \d+\.\d+s" -> "finished in $$TIME"
|
|
|
|
// This test ensures that no code block is detected in the doc comments.
|
|
|
|
pub mod Wormhole {
|
|
/** # Returns
|
|
*
|
|
*/
|
|
pub fn foofoo() {}
|
|
/**
|
|
* # Returns
|
|
*
|
|
*/
|
|
pub fn barbar() {}
|
|
}
|