rust/tests/rustdoc-json/impl-trait-precise-capturing.rs

7 lines
387 B
Rust
Raw Normal View History

2024-07-11 23:50:03 +00:00
#![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\"
2024-07-11 23:50:03 +00:00
pub fn hello<'a, T, const N: usize>() -> impl Sized + use<'a, T, N> {}