about summary refs log tree commit diff
path: root/tests/rustdoc/const-intrinsic.rs
diff options
context:
space:
mode:
authorMichael Howell <michael@notriddle.com>2023-01-30 11:05:12 -0700
committerMichael Howell <michael@notriddle.com>2023-01-30 11:06:18 -0700
commit7080f80e8b64eb5f2037de50991edb9e82aee3a5 (patch)
tree26c2d27d0b59e40d240a2a631e5e51e98a5ab8d8 /tests/rustdoc/const-intrinsic.rs
parent006ca9b14da1e0145844598b3d6a554c042c702a (diff)
downloadrust-7080f80e8b64eb5f2037de50991edb9e82aee3a5.tar.gz
rust-7080f80e8b64eb5f2037de50991edb9e82aee3a5.zip
rustdoc: remove unnecessary wrapper div.item-decl from HTML
Diffstat (limited to 'tests/rustdoc/const-intrinsic.rs')
-rw-r--r--tests/rustdoc/const-intrinsic.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/rustdoc/const-intrinsic.rs b/tests/rustdoc/const-intrinsic.rs
index 42f6ac7923b..6d2c6cce29c 100644
--- a/tests/rustdoc/const-intrinsic.rs
+++ b/tests/rustdoc/const-intrinsic.rs
@@ -6,20 +6,20 @@
 
 extern "rust-intrinsic" {
     // @has 'foo/fn.transmute.html'
-    // @has - '//div[@class="item-decl"]/pre[@class="rust"]' 'pub const unsafe extern "rust-intrinsic" fn transmute<T, U>(_: T) -> U'
+    // @has - '//pre[@class="rust item-decl"]' 'pub const unsafe extern "rust-intrinsic" fn transmute<T, U>(_: T) -> U'
     #[stable(since="1.0.0", feature="rust1")]
     #[rustc_const_stable(feature = "const_transmute", since = "1.56.0")]
     pub fn transmute<T, U>(_: T) -> U;
 
     // @has 'foo/fn.unreachable.html'
-    // @has - '//div[@class="item-decl"]/pre[@class="rust"]' 'pub unsafe extern "rust-intrinsic" fn unreachable() -> !'
+    // @has - '//pre[@class="rust item-decl"]' 'pub unsafe extern "rust-intrinsic" fn unreachable() -> !'
     #[stable(since="1.0.0", feature="rust1")]
     pub fn unreachable() -> !;
 }
 
 extern "C" {
     // @has 'foo/fn.needs_drop.html'
-    // @has - '//div[@class="item-decl"]/pre[@class="rust"]' 'pub unsafe extern "C" fn needs_drop() -> !'
+    // @has - '//pre[@class="rust item-decl"]' 'pub unsafe extern "C" fn needs_drop() -> !'
     #[stable(since="1.0.0", feature="rust1")]
     pub fn needs_drop() -> !;
 }