2017-09-07 20:06:40 +00:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
2022-09-09 14:18:22 +00:00
|
|
|
// @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"]' "ⓘ"
|
2023-01-26 20:32:33 +00:00
|
|
|
// @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();
|
|
|
|
/// ```
|
|
|
|
///
|
2020-06-18 12:48:37 +00:00
|
|
|
/// ```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 }
|