summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-ui/issues/issue-81662-shortness.rs
blob: 0240d217bee521a493339bd6ecdd646a24e957ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// compile-flags:--test --error-format=short
// normalize-stdout-test: "tests/rustdoc-ui/issues" -> "$$DIR"
// normalize-stdout-test "finished in \d+\.\d+s" -> "finished in $$TIME"
// failure-status: 101

/// ```rust
/// foo();
/// ```
//~^^ ERROR cannot find function `foo` in this scope
fn foo() {
    println!("Hello, world!");
}