blob: 5d1951dbe3eef5b81aa2ec8b0148e3b78a443108 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//@ compile-flags:--test --error-format=short
//@ check-stdout
//@ normalize-stdout: "tests/rustdoc-ui/issues" -> "$$DIR"
//@ normalize-stdout: "finished in \d+\.\d+s" -> "finished in $$TIME"
//@ failure-status: 101
/// ```rust
/// foo();
/// ```
fn foo() {
println!("Hello, world!");
}
//~? RAW cannot find function `foo`
|