mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
18 lines
326 B
Rust
18 lines
326 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() {}
|
|
}
|