mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-27 02:53:43 +00:00
The rustdoc-json test syntax often requires very long lines, so the checks for long lines aren't really useful.
7 lines
527 B
Rust
7 lines
527 B
Rust
//@ count '$.index[*][?(@.name=="outlives")].inner.function.generics.params[*]' 2
|
|
//@ is '$.index[*][?(@.name=="outlives")].inner.function.generics.params[0].name' \"\'a\"
|
|
//@ is '$.index[*][?(@.name=="outlives")].inner.function.generics.params[0].kind.lifetime.outlives' []
|
|
//@ is '$.index[*][?(@.name=="outlives")].inner.function.generics.params[1].name' '"T"'
|
|
//@ is '$.index[*][?(@.name=="outlives")].inner.function.generics.params[1].kind.type.bounds' '[{"outlives": "'\''a"}]'
|
|
pub fn outlives<'a, T: 'a>() {}
|