From a4b7ed7a42c716ab9f05e351f003d589124fd55d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:18:58 +0200 Subject: Adding upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- src/test/rustdoc/issue-89309-heading-levels.rs | 29 -------------------------- 1 file changed, 29 deletions(-) delete mode 100644 src/test/rustdoc/issue-89309-heading-levels.rs (limited to 'src/test/rustdoc/issue-89309-heading-levels.rs') diff --git a/src/test/rustdoc/issue-89309-heading-levels.rs b/src/test/rustdoc/issue-89309-heading-levels.rs deleted file mode 100644 index bb706c28f..000000000 --- a/src/test/rustdoc/issue-89309-heading-levels.rs +++ /dev/null @@ -1,29 +0,0 @@ -#![crate_name = "foo"] - -// @has foo/trait.Read.html -// @has - '//h2' 'Trait examples' -/// # Trait examples -pub trait Read { - // @has - '//h5' 'Function examples' - /// # Function examples - fn read(&mut self, buf: &mut [u8]) -> Result; -} - -pub struct Foo; - -// @has foo/struct.Foo.html -impl Foo { - // @has - '//h5' 'Implementation header' - /// # Implementation header - pub fn bar(&self) -> usize { - 1 - } -} - -impl Read for Foo { - // @has - '//h5' 'Trait implementation header' - /// # Trait implementation header - fn read(&mut self, buf: &mut [u8]) -> Result { - Ok(1) - } -} -- cgit v1.2.3