0
0
mirror of https://github.com/rust-lang/rust.git synced 2024-11-28 09:36:05 +01:00
rust/tests/run-make/doctests-merge/doctest.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
241 B
Rust
Raw Normal View History

2024-06-10 23:33:14 +02:00
#![crate_name = "foo"]
#![crate_type = "lib"]
//! ```
//! foo::init();
//! ```
/// ```
/// foo::init();
/// ```
pub fn init() {
static mut IS_INIT: bool = false;
unsafe {
assert!(!IS_INIT);
IS_INIT = true;
}
}