rust/tests/rustdoc/codeblock-title.rs

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

26 lines
589 B
Rust
Raw Normal View History

2017-09-07 20:06:40 +00:00
#![crate_name = "foo"]
//@ has foo/fn.bar.html '//*[@class="example-wrap compile_fail"]/*[@class="tooltip"]' "ⓘ"
//@ has foo/fn.bar.html '//*[@class="example-wrap ignore"]/*[@class="tooltip"]' "ⓘ"
//@ has foo/fn.bar.html '//*[@class="example-wrap should_panic"]/*[@class="tooltip"]' "ⓘ"
//@ has foo/fn.bar.html '//*[@title="This example runs with edition 2018"]' "ⓘ"
2017-09-07 20:06:40 +00:00
/// foo
///
/// ```compile_fail
/// foo();
/// ```
///
/// ```ignore (tidy)
/// goo();
/// ```
///
/// ```should_panic
/// hoo();
/// ```
2020-06-18 15:45:52 +00:00
///
2020-12-05 16:31:39 +00:00
/// ```edition2018
2017-09-07 20:06:40 +00:00
/// let x = 0;
/// ```
pub fn bar() -> usize { 2 }