Add test for footnote references in doc summary

This commit is contained in:
Guillaume Gomez 2023-03-19 18:02:11 +01:00
parent d2d15fe60e
commit 5a752cd2ca

View File

@ -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;