2019-01-31 01:15:29 +00:00
|
|
|
//! This file tests for the `DOC_MARKDOWN` lint.
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2021-04-05 04:09:13 +00:00
|
|
|
#![allow(dead_code, incomplete_features)]
|
2018-07-28 15:34:52 +00:00
|
|
|
#![warn(clippy::doc_markdown)]
|
2021-04-05 04:09:13 +00:00
|
|
|
#![feature(custom_inner_attributes, const_generics, const_evaluatable_checked, const_option)]
|
2019-03-07 06:03:15 +00:00
|
|
|
#![rustfmt::skip]
|
2016-03-19 16:59:12 +00:00
|
|
|
|
2016-03-28 16:00:24 +00:00
|
|
|
/// The foo_bar function does _nothing_. See also foo::bar. (note the dot there)
|
2019-01-31 01:15:29 +00:00
|
|
|
/// Markdown is _weird_. I mean _really weird_. This \_ is ok. So is `_`. But not Foo::some_fun
|
2016-03-28 16:00:24 +00:00
|
|
|
/// which should be reported only once despite being __doubly bad__.
|
2017-05-29 22:11:08 +00:00
|
|
|
/// Here be ::a::global:path.
|
2016-07-08 16:18:45 +00:00
|
|
|
/// That's not code ~NotInCodeBlock~.
|
2016-04-13 14:02:44 +00:00
|
|
|
/// be_sure_we_got_to_the_end_of_it
|
2016-03-19 16:59:12 +00:00
|
|
|
fn foo_bar() {
|
|
|
|
}
|
|
|
|
|
|
|
|
/// That one tests multiline ticks.
|
|
|
|
/// ```rust
|
|
|
|
/// foo_bar FOO_BAR
|
2016-03-28 19:23:21 +00:00
|
|
|
/// _foo bar_
|
2016-03-19 16:59:12 +00:00
|
|
|
/// ```
|
2016-07-08 16:18:45 +00:00
|
|
|
///
|
|
|
|
/// ~~~rust
|
|
|
|
/// foo_bar FOO_BAR
|
|
|
|
/// _foo bar_
|
|
|
|
/// ~~~
|
2016-04-13 14:02:44 +00:00
|
|
|
/// be_sure_we_got_to_the_end_of_it
|
2016-07-08 16:18:45 +00:00
|
|
|
fn multiline_codeblock() {
|
2016-03-19 16:59:12 +00:00
|
|
|
}
|
|
|
|
|
2016-03-28 19:23:21 +00:00
|
|
|
/// This _is a test for
|
|
|
|
/// multiline
|
|
|
|
/// emphasis_.
|
2016-04-13 14:02:44 +00:00
|
|
|
/// be_sure_we_got_to_the_end_of_it
|
2016-05-02 12:36:33 +00:00
|
|
|
fn test_emphasis() {
|
2016-03-28 19:23:21 +00:00
|
|
|
}
|
|
|
|
|
2016-04-04 18:18:17 +00:00
|
|
|
/// This tests units. See also #835.
|
|
|
|
/// kiB MiB GiB TiB PiB EiB
|
|
|
|
/// kib Mib Gib Tib Pib Eib
|
|
|
|
/// kB MB GB TB PB EB
|
|
|
|
/// kb Mb Gb Tb Pb Eb
|
|
|
|
/// 32kiB 32MiB 32GiB 32TiB 32PiB 32EiB
|
|
|
|
/// 32kib 32Mib 32Gib 32Tib 32Pib 32Eib
|
|
|
|
/// 32kB 32MB 32GB 32TB 32PB 32EB
|
|
|
|
/// 32kb 32Mb 32Gb 32Tb 32Pb 32Eb
|
2016-06-08 20:00:42 +00:00
|
|
|
/// NaN
|
2016-04-13 14:02:44 +00:00
|
|
|
/// be_sure_we_got_to_the_end_of_it
|
2016-05-02 12:36:33 +00:00
|
|
|
fn test_units() {
|
2016-04-13 14:02:44 +00:00
|
|
|
}
|
|
|
|
|
2020-09-02 11:51:44 +00:00
|
|
|
/// This tests allowed identifiers.
|
2021-02-24 22:26:11 +00:00
|
|
|
/// KiB MiB GiB TiB PiB EiB
|
2020-09-02 11:51:44 +00:00
|
|
|
/// DirectX
|
|
|
|
/// ECMAScript
|
2021-02-24 22:26:11 +00:00
|
|
|
/// GPLv2 GPLv3
|
|
|
|
/// GitHub GitLab
|
|
|
|
/// IPv4 IPv6
|
|
|
|
/// ClojureScript CoffeeScript JavaScript PureScript TypeScript
|
|
|
|
/// NaN NaNs
|
2020-09-02 11:51:44 +00:00
|
|
|
/// OAuth GraphQL
|
2021-02-24 22:26:11 +00:00
|
|
|
/// OCaml
|
|
|
|
/// OpenGL OpenMP OpenSSH OpenSSL OpenStreetMap OpenDNS
|
2021-01-17 21:57:08 +00:00
|
|
|
/// WebGL
|
2021-02-24 22:26:11 +00:00
|
|
|
/// TensorFlow
|
|
|
|
/// TrueType
|
|
|
|
/// iOS macOS
|
2020-09-02 11:51:44 +00:00
|
|
|
/// TeX LaTeX BibTeX BibLaTeX
|
2021-02-24 22:26:11 +00:00
|
|
|
/// MinGW
|
2020-09-02 11:51:44 +00:00
|
|
|
/// CamelCase (see also #2395)
|
|
|
|
/// be_sure_we_got_to_the_end_of_it
|
|
|
|
fn test_allowed() {
|
|
|
|
}
|
|
|
|
|
2016-04-11 21:22:30 +00:00
|
|
|
/// This test has [a link_with_underscores][chunked-example] inside it. See #823.
|
2018-11-22 03:40:09 +00:00
|
|
|
/// See also [the issue tracker](https://github.com/rust-lang/rust-clippy/search?q=clippy::doc_markdown&type=Issues)
|
2016-04-13 14:02:44 +00:00
|
|
|
/// on GitHub (which is a camel-cased word, but is OK). And here is another [inline link][inline_link].
|
|
|
|
/// It can also be [inline_link2].
|
2016-04-01 15:24:55 +00:00
|
|
|
///
|
2016-04-11 21:22:30 +00:00
|
|
|
/// [chunked-example]: https://en.wikipedia.org/wiki/Chunked_transfer_encoding#Example
|
|
|
|
/// [inline_link]: https://foobar
|
2016-04-13 14:02:44 +00:00
|
|
|
/// [inline_link2]: https://foobar
|
2016-03-19 16:59:12 +00:00
|
|
|
/// The `main` function is the entry point of the program. Here it only calls the `foo_bar` and
|
|
|
|
/// `multiline_ticks` functions.
|
2016-04-11 21:22:30 +00:00
|
|
|
///
|
|
|
|
/// expression of the type `_ <bit_op> m <cmp_op> c` (where `<bit_op>`
|
|
|
|
/// is one of {`&`, '|'} and `<cmp_op>` is one of {`!=`, `>=`, `>` ,
|
2016-04-13 14:02:44 +00:00
|
|
|
/// be_sure_we_got_to_the_end_of_it
|
2016-03-19 16:59:12 +00:00
|
|
|
fn main() {
|
|
|
|
foo_bar();
|
2016-07-08 16:18:45 +00:00
|
|
|
multiline_codeblock();
|
2016-03-28 19:23:21 +00:00
|
|
|
test_emphasis();
|
2016-04-04 18:18:17 +00:00
|
|
|
test_units();
|
2016-03-19 16:59:12 +00:00
|
|
|
}
|
2016-05-05 19:32:48 +00:00
|
|
|
|
2016-05-05 19:42:59 +00:00
|
|
|
/// ## CamelCaseThing
|
2019-01-31 01:15:29 +00:00
|
|
|
/// Talks about `CamelCaseThing`. Titles should be ignored; see issue #897.
|
2016-05-05 19:42:59 +00:00
|
|
|
///
|
|
|
|
/// # CamelCaseThing
|
|
|
|
///
|
|
|
|
/// Not a title #897 CamelCaseThing
|
|
|
|
/// be_sure_we_got_to_the_end_of_it
|
|
|
|
fn issue897() {
|
|
|
|
}
|
|
|
|
|
2016-05-05 19:32:48 +00:00
|
|
|
/// I am confused by brackets? (`x_y`)
|
|
|
|
/// I am confused by brackets? (foo `x_y`)
|
|
|
|
/// I am confused by brackets? (`x_y` foo)
|
|
|
|
/// be_sure_we_got_to_the_end_of_it
|
|
|
|
fn issue900() {
|
|
|
|
}
|
2016-05-05 19:34:42 +00:00
|
|
|
|
|
|
|
/// Diesel queries also have a similar problem to [Iterator][iterator], where
|
|
|
|
/// /// More talking
|
|
|
|
/// returning them from a function requires exposing the implementation of that
|
|
|
|
/// function. The [`helper_types`][helper_types] module exists to help with this,
|
|
|
|
/// but you might want to hide the return type or have it conditionally change.
|
|
|
|
/// Boxing can achieve both.
|
|
|
|
///
|
|
|
|
/// [iterator]: https://doc.rust-lang.org/stable/std/iter/trait.Iterator.html
|
|
|
|
/// [helper_types]: ../helper_types/index.html
|
|
|
|
/// be_sure_we_got_to_the_end_of_it
|
|
|
|
fn issue883() {
|
|
|
|
}
|
2016-05-26 20:53:38 +00:00
|
|
|
|
|
|
|
/// `foo_bar
|
|
|
|
/// baz_quz`
|
2016-05-28 01:18:52 +00:00
|
|
|
/// [foo
|
|
|
|
/// bar](https://doc.rust-lang.org/stable/std/iter/trait.IteratorFooBar.html)
|
2016-05-26 20:53:38 +00:00
|
|
|
fn multiline() {
|
|
|
|
}
|
2016-07-08 16:18:45 +00:00
|
|
|
|
2019-01-31 01:15:29 +00:00
|
|
|
/** E.g., serialization of an empty list: FooBar
|
2016-07-08 16:18:45 +00:00
|
|
|
```
|
|
|
|
That's in a code block: `PackedNode`
|
|
|
|
```
|
|
|
|
|
|
|
|
And BarQuz too.
|
|
|
|
be_sure_we_got_to_the_end_of_it
|
|
|
|
*/
|
|
|
|
fn issue1073() {
|
|
|
|
}
|
|
|
|
|
2019-01-31 01:15:29 +00:00
|
|
|
/** E.g., serialization of an empty list: FooBar
|
2016-07-08 16:18:45 +00:00
|
|
|
```
|
|
|
|
That's in a code block: PackedNode
|
|
|
|
```
|
|
|
|
|
|
|
|
And BarQuz too.
|
|
|
|
be_sure_we_got_to_the_end_of_it
|
|
|
|
*/
|
|
|
|
fn issue1073_alt() {
|
|
|
|
}
|
|
|
|
|
2019-01-31 01:15:29 +00:00
|
|
|
/// Tests more than three quotes:
|
2016-07-08 16:18:45 +00:00
|
|
|
/// ````
|
|
|
|
/// DoNotWarn
|
|
|
|
/// ```
|
|
|
|
/// StillDont
|
|
|
|
/// ````
|
|
|
|
/// be_sure_we_got_to_the_end_of_it
|
|
|
|
fn four_quotes() {
|
|
|
|
}
|
2017-05-30 17:49:09 +00:00
|
|
|
|
|
|
|
/// See [NIST SP 800-56A, revision 2].
|
|
|
|
///
|
|
|
|
/// [NIST SP 800-56A, revision 2]:
|
2018-11-22 03:40:09 +00:00
|
|
|
/// https://github.com/rust-lang/rust-clippy/issues/902#issuecomment-261919419
|
2017-05-30 17:49:09 +00:00
|
|
|
fn issue_902_comment() {}
|
2017-05-30 17:50:07 +00:00
|
|
|
|
|
|
|
#[cfg_attr(feature = "a", doc = " ```")]
|
|
|
|
#[cfg_attr(not(feature = "a"), doc = " ```ignore")]
|
|
|
|
/// fn main() {
|
|
|
|
/// let s = "localhost:10000".to_string();
|
|
|
|
/// println!("{}", s);
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
fn issue_1469() {}
|
2017-08-19 20:52:49 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This is a doc comment that should not be a list
|
|
|
|
*This would also be an error under a strict common mark interpretation
|
|
|
|
*/
|
|
|
|
fn issue_1920() {}
|
2017-06-18 21:00:14 +00:00
|
|
|
|
|
|
|
/// Ok: <http://www.unicode.org/reports/tr9/#Reordering_Resolved_Levels>
|
|
|
|
///
|
2017-06-19 19:23:50 +00:00
|
|
|
/// Not ok: http://www.unicode.org
|
|
|
|
/// Not ok: https://www.unicode.org
|
|
|
|
/// Not ok: http://www.unicode.org/
|
2017-06-18 21:00:14 +00:00
|
|
|
/// Not ok: http://www.unicode.org/reports/tr9/#Reordering_Resolved_Levels
|
|
|
|
fn issue_1832() {}
|
2018-12-11 18:37:43 +00:00
|
|
|
|
2018-12-07 10:48:06 +00:00
|
|
|
/// An iterator over mycrate::Collection's values.
|
|
|
|
/// It should not lint a `'static` lifetime in ticks.
|
|
|
|
fn issue_2210() {}
|
2018-12-07 21:38:45 +00:00
|
|
|
|
|
|
|
/// This should not cause the lint to trigger:
|
|
|
|
/// #REQ-data-family.lint_partof_exists
|
|
|
|
fn issue_2343() {}
|
2019-07-19 05:18:10 +00:00
|
|
|
|
|
|
|
/// This should not cause an ICE:
|
|
|
|
/// __|_ _|__||_|
|
|
|
|
fn pulldown_cmark_crash() {}
|
2021-04-05 04:09:13 +00:00
|
|
|
|
|
|
|
// issue #7033 - const_evaluatable_checked ICE
|
|
|
|
struct S<T, const N: usize>
|
|
|
|
where [(); N.checked_next_power_of_two().unwrap()]: {
|
|
|
|
arr: [T; N.checked_next_power_of_two().unwrap()],
|
|
|
|
n: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: Copy + Default, const N: usize> S<T, N>
|
|
|
|
where [(); N.checked_next_power_of_two().unwrap()]: {
|
|
|
|
fn new() -> Self {
|
|
|
|
Self {
|
|
|
|
arr: [T::default(); N.checked_next_power_of_two().unwrap()],
|
|
|
|
n: 0,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|