about summary refs log tree commit diff
path: root/tests/rustdoc-json/impl-trait-precise-capturing.rs
diff options
context:
space:
mode:
authorLeón Orell Valerian Liehr <me@fmease.dev>2024-07-19 16:50:47 +0200
committerLeón Orell Valerian Liehr <me@fmease.dev>2024-07-19 16:54:42 +0200
commit633f41de0903efb830753e2e373ac9666230eb54 (patch)
tree9cde8cebf5574500497ddcd8351e0e0284ce2e51 /tests/rustdoc-json/impl-trait-precise-capturing.rs
parent25be41cfb8c2fa1c59b8193b68801a75f5603d8f (diff)
downloadrust-633f41de0903efb830753e2e373ac9666230eb54.tar.gz
rust-633f41de0903efb830753e2e373ac9666230eb54.zip
Update all rustdoc-json/ tests to use the new style
Diffstat (limited to 'tests/rustdoc-json/impl-trait-precise-capturing.rs')
-rw-r--r--tests/rustdoc-json/impl-trait-precise-capturing.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/rustdoc-json/impl-trait-precise-capturing.rs b/tests/rustdoc-json/impl-trait-precise-capturing.rs
index bf98868d145..f9fee788ffe 100644
--- a/tests/rustdoc-json/impl-trait-precise-capturing.rs
+++ b/tests/rustdoc-json/impl-trait-precise-capturing.rs
@@ -1,6 +1,6 @@
 #![feature(precise_capturing)]
 
-// @is "$.index[*][?(@.name=='hello')].inner.function.decl.output.impl_trait[1].use[0]" \"\'a\"
-// @is "$.index[*][?(@.name=='hello')].inner.function.decl.output.impl_trait[1].use[1]" \"T\"
-// @is "$.index[*][?(@.name=='hello')].inner.function.decl.output.impl_trait[1].use[2]" \"N\"
+//@ is "$.index[*][?(@.name=='hello')].inner.function.decl.output.impl_trait[1].use[0]" \"\'a\"
+//@ is "$.index[*][?(@.name=='hello')].inner.function.decl.output.impl_trait[1].use[1]" \"T\"
+//@ is "$.index[*][?(@.name=='hello')].inner.function.decl.output.impl_trait[1].use[2]" \"N\"
 pub fn hello<'a, T, const N: usize>() -> impl Sized + use<'a, T, N> {}