diff options
| author | Guillaume Gomez <guillaume.gomez@huawei.com> | 2023-03-19 18:02:11 +0100 |
|---|---|---|
| committer | Guillaume Gomez <guillaume.gomez@huawei.com> | 2023-03-19 18:02:52 +0100 |
| commit | 5a752cd2ca4378cf86831292fdf601636167554c (patch) | |
| tree | 26713c7763239c075beb7e983f849cfa1db35857 | |
| parent | d2d15fe60ee88a07cc269fe1b25df670a266cc0c (diff) | |
| download | rust-5a752cd2ca4378cf86831292fdf601636167554c.tar.gz rust-5a752cd2ca4378cf86831292fdf601636167554c.zip | |
Add test for footnote references in doc summary
| -rw-r--r-- | tests/rustdoc/footnote-in-summary.rs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/rustdoc/footnote-in-summary.rs b/tests/rustdoc/footnote-in-summary.rs new file mode 100644 index 00000000000..e6ff5a7fd51 --- /dev/null +++ b/tests/rustdoc/footnote-in-summary.rs @@ -0,0 +1,17 @@ +// This test ensures that no footnote reference is generated inside +// summary doc. + +#![crate_name = "foo"] + +// @has 'foo/index.html' +// @has - '//*[@class="desc docblock-short"]' 'hello bla' +// @!has - '//*[@class="desc docblock-short"]/sup' '1' + +// @has 'foo/struct.S.html' +// @has - '//*[@class="docblock"]//sup' '1' +// @has - '//*[@class="docblock"]' 'hello 1 bla' + +/// hello [^foot] bla +/// +/// [^foot]: blabla +pub struct S; |
