2017-09-07 20:06:40 +00:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
// ignore-tidy-linelength
|
|
|
|
|
2017-11-13 17:44:19 +00:00
|
|
|
// @has foo/fn.bar.html '//*[@class="tooltip compile_fail"]/span' "This example deliberately fails to compile"
|
|
|
|
// @has foo/fn.bar.html '//*[@class="tooltip ignore"]/span' "This example is not tested"
|
2020-06-18 12:48:37 +00:00
|
|
|
// @has foo/fn.bar.html '//*[@class="tooltip should_panic"]/span' "This example panics"
|
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();
|
|
|
|
/// ```
|
|
|
|
///
|
2017-09-07 20:06:40 +00:00
|
|
|
/// ```
|
|
|
|
/// let x = 0;
|
|
|
|
/// ```
|
|
|
|
pub fn bar() -> usize { 2 }
|