blob: 7df63261ce7eeeddaa219a594cbe6cf4fcf12f3f [file] [log] [blame] [edit]
//@ compile-flags:--test --error-format=short
//@ check-stdout
//@ error-pattern:cannot find function `foo`
//@ normalize-stdout-test: "tests/rustdoc-ui/issues" -> "$$DIR"
//@ normalize-stdout-test: "finished in \d+\.\d+s" -> "finished in $$TIME"
//@ failure-status: 101
/// ```rust
/// foo();
/// ```
fn foo() {
println!("Hello, world!");
}