mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
15 lines
371 B
Rust
15 lines
371 B
Rust
//@ compile-flags:--test --test-args=--test-threads=1 -Zunstable-options --edition 2024
|
|
//@ normalize-stdout-test: "tests/rustdoc-ui/doctest" -> "$$DIR"
|
|
//@ normalize-stdout-test: "finished in \d+\.\d+s" -> "finished in $$TIME"
|
|
//@ check-pass
|
|
|
|
/// ```ignore (test)
|
|
/// let x = 12;
|
|
/// ```
|
|
pub fn ignored() {}
|
|
|
|
/// ```no_run
|
|
/// panic!("blob");
|
|
/// ```
|
|
pub fn no_run() {}
|