os-rust/tests/rustdoc-ui/doctest/merged-ignore-no_run.rs

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

15 lines
370 B
Rust
Raw Normal View History

2024-07-09 14:34:55 +02:00
//@ 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() {}