2024-07-09 07:34:55 -05:00
|
|
|
//@ compile-flags:--test --test-args=--test-threads=1 -Zunstable-options --edition 2024
|
|
|
|
//@ normalize-stdout-test: "tests/rustdoc-ui/doctest" -> "$$DIR"
|
2024-07-12 04:26:25 -05:00
|
|
|
//@ normalize-stdout-test: "finished in \d+\.\d+s" -> "finished in $$TIME"
|
2024-07-09 07:34:55 -05:00
|
|
|
//@ check-pass
|
|
|
|
|
|
|
|
/// ```ignore (test)
|
|
|
|
/// let x = 12;
|
|
|
|
/// ```
|
|
|
|
pub fn ignored() {}
|
|
|
|
|
|
|
|
/// ```no_run
|
|
|
|
/// panic!("blob");
|
|
|
|
/// ```
|
|
|
|
pub fn no_run() {}
|