]> git.lizzy.rs Git - rust.git/blobdiff - tests/rustdoc/const-generics/type-alias.rs
Auto merge of #100754 - davidtwco:translation-incremental, r=compiler-errors
[rust.git] / tests / rustdoc / const-generics / type-alias.rs
index 72473a112440ce28414f01b479f18dc3e4a789db..4b93e72d27370ecfd3ce8dc5cc886cb40c914beb 100644 (file)
@@ -1,4 +1,4 @@
 #![crate_name = "foo"]
 
-// @has foo/type.CellIndex.html '//div[@class="item-decl"]/pre[@class="rust"]' 'type CellIndex<const D: usize> = [i64; D];'
+// @has foo/type.CellIndex.html '//pre[@class="rust item-decl"]' 'type CellIndex<const D: usize> = [i64; D];'
 pub type CellIndex<const D: usize> = [i64; D];