]> git.lizzy.rs Git - rust.git/blobdiff - src/test/rustdoc/synthetic_auto/lifetimes.rs
Rollup merge of #84465 - jyn514:primitive, r=GuillaumeGomez
[rust.git] / src / test / rustdoc / synthetic_auto / lifetimes.rs
index 6d0a68f9b0734eeaaf7c0f465e012d1593df9a5c..05c88f10822ca1563d345f48a8b4d94eba81fbc8 100644 (file)
@@ -9,10 +9,10 @@ unsafe impl<'a, T> Send for Inner<'a, T>
 {}
 
 // @has lifetimes/struct.Foo.html
-// @has - '//*[@id="synthetic-implementations-list"]/*[@class="impl"]//code' "impl<'c, K> Send \
+// @has - '//*[@id="synthetic-implementations-list"]//*[@class="impl"]//code' "impl<'c, K> Send \
 // for Foo<'c, K> where K: for<'b> Fn(&'b bool) -> &'c u8, 'c: 'static"
 //
-// @has - '//*[@id="synthetic-implementations-list"]/*[@class="impl"]//code' "impl<'c, K> Sync \
+// @has - '//*[@id="synthetic-implementations-list"]//*[@class="impl"]//code' "impl<'c, K> Sync \
 // for Foo<'c, K> where K: Sync"
 pub struct Foo<'c, K: 'c> {
     inner_field: Inner<'c, K>,